From 066cda2198edfc0ccfc414b511b6d42c430ffbbc Mon Sep 17 00:00:00 2001 From: Ashley <2825071+ashley@users.noreply.github.com> Date: Wed, 11 Jun 2025 22:14:21 -0400 Subject: [PATCH 1/2] Create build-check.yml --- .github/workflows/build-check.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build-check.yml diff --git a/.github/workflows/build-check.yml b/.github/workflows/build-check.yml new file mode 100644 index 00000000..c8f56909 --- /dev/null +++ b/.github/workflows/build-check.yml @@ -0,0 +1,23 @@ +name: Build Check +on: + pull_request: +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Print git ref + run: echo "GITHUB_REF ${{ github.ref }}" + + - name: Use Node + uses: actions/setup-node@v4 + with: + node-version: '24' + + - name: Install dependencies + run: npm install + + - name: Build + run: npm run build From 5e800dd5d00d5f1b3fa7c0bd4782558fd2a6d182 Mon Sep 17 00:00:00 2001 From: Ashley <2825071+ashley@users.noreply.github.com> Date: Thu, 12 Jun 2025 19:57:38 -0400 Subject: [PATCH 2/2] Update build-check.yml --- .github/workflows/build-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-check.yml b/.github/workflows/build-check.yml index c8f56909..2ac34351 100644 --- a/.github/workflows/build-check.yml +++ b/.github/workflows/build-check.yml @@ -14,7 +14,7 @@ jobs: - name: Use Node uses: actions/setup-node@v4 with: - node-version: '24' + node-version: 20 - name: Install dependencies run: npm install