From f39152cf7e433ead88f6fcb9276e3ec0af8ec9e1 Mon Sep 17 00:00:00 2001 From: Ulas Date: Wed, 1 Apr 2026 11:42:56 +0200 Subject: [PATCH] ci: add GitHub Actions workflow for automated tests Runs npm test on push and pull requests to main. Matrix covers Node.js 22.x and 24.x. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/ci.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..ca9f1c9 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,31 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + test: + name: Tests (Node.js ${{ matrix.node-version }}) + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [22.x, 24.x] + + steps: + - uses: actions/checkout@v4 + + - name: Set up Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: npm + + - name: Install dependencies + run: npm ci + + - name: Run tests + run: npm test