From 0d42d674f5c4da348923a3b24faad1b66c7f4839 Mon Sep 17 00:00:00 2001 From: Jaypee Ignacio <7437006+jaypeeig@users.noreply.github.com> Date: Fri, 10 Jan 2025 14:27:12 +0800 Subject: [PATCH] Create check-changes.yml --- .github/workflows/check-changes.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/check-changes.yml diff --git a/.github/workflows/check-changes.yml b/.github/workflows/check-changes.yml new file mode 100644 index 0000000..1df795e --- /dev/null +++ b/.github/workflows/check-changes.yml @@ -0,0 +1,27 @@ +name: CI + +on: + push: + branches: + - main + pull_request: + +permissions: + actions: read + contents: read + +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 + with: + fetch-depth: 0 + + - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 + with: + node-version: 20 + cache: 'npm' + - name: Deploy Cell + uses: ./.github/actions/files/check-affected +