Skip to content

Build v1.0.1

Build v1.0.1 #4

Workflow file for this run

name: Tests
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Lint files
run: npm run lint
- name: Run tests
run: npm test