Skip to content

Major revision of library internals. #743

Major revision of library internals.

Major revision of library internals. #743

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install Node dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run tests
run: npm run test