Skip to content

Workflow file for this run

name: Test project
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Install project dependencies
run: npm ci
- name: Run tests
run: npm run test