Skip to content

Merge branch 'next' of github.com:Laboratoria/curriculum into next #659

Merge branch 'next' of github.com:Laboratoria/curriculum into next

Merge branch 'next' of github.com:Laboratoria/curriculum into next #659

Workflow file for this run

name: Run tests on push and pull requests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test