Skip to content

Merge pull request #85 from boscop-fr/v3 #6

Merge pull request #85 from boscop-fr/v3

Merge pull request #85 from boscop-fr/v3 #6

Workflow file for this run

name: Unit tests
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test-unit