From c5e20ad1157f62eec4e96a7e75de3632dcf80d69 Mon Sep 17 00:00:00 2001 From: Milo Turner Date: Wed, 3 Sep 2025 14:09:27 -0400 Subject: [PATCH] add github actions checks --- .github/workflows/checks.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/checks.yml diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 0000000..4cf7d2b --- /dev/null +++ b/.github/workflows/checks.yml @@ -0,0 +1,29 @@ +# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs + +name: Test Suite Checks + +on: + pull_request: + types: [opened, synchronize, reopened] + push: + branches: + - hal2 + +permissions: + contents: read + +jobs: + test-suite-checks: + name: Test Suite Checks + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: "18.17.1" + - name: Install project dependencies + run: npm ci + - name: Run npm test script + run: npm test