Skip to content

[TEST] update github actions config #55

[TEST] update github actions config

[TEST] update github actions config #55

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
pull_request:
types: [opened, reopened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm test
- name: PKG versions
run: |
node -v
npm -v