Skip to content

Merge pull request #2 from zazuko/ci-test #2

Merge pull request #2 from zazuko/ci-test

Merge pull request #2 from zazuko/ci-test #2

Workflow file for this run

name: Run tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run tests
run: npm run test