Skip to content

0.4.61

0.4.61 #1

Workflow file for this run

name: Test
on:
push:
branches: [master]
pull_request: {}
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-node@v4
with:
node-version: 18.x
cache: npm
- name: Install dependencies and build
run: npm ci
- name: Run tests
run: npm test