Skip to content

github workflow

github workflow #1

Workflow file for this run

steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test