Skip to content

Initial commit

Initial commit #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build-and-test:
name: 'Test / Node v${{ matrix.node }} / ${{ matrix.os }}'
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
node:
- 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm install
- run: npm test
- run: npm run lint