Skip to content

Initial commit of code #3

Initial commit of code

Initial commit of code #3

Workflow file for this run

name: Tests
on:
push:
branches: ['main']
pull_request:
paths:
- '**.js'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20.x', '22.x', 'latest']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run check
- run: node --test