Skip to content

V0.6.0

V0.6.0 #296

Workflow file for this run

name: test-and-lint
on:
push:
branches: [ master, modular ]
pull_request:
branches: [ master, modular ]
jobs:
build:
name: node.js
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Support LTS versions based on https://nodejs.org/en/about/releases/
node-version: ['18', '20', '21']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test -- --timeout 10000