Skip to content

Merge remote-tracking branch 'origin/master' into certification-dirig… #2345

Merge remote-tracking branch 'origin/master' into certification-dirig…

Merge remote-tracking branch 'origin/master' into certification-dirig… #2345

Workflow file for this run

name: Tests
on:
push:
branches:
- "**"
- "!master"
env:
INSEE_CONSUMER_KEY: ${{ secrets.INSEE_CONSUMER_KEY }}
INSEE_CONSUMER_SECRET: ${{ secrets.INSEE_CONSUMER_SECRET }}
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: "npm"
node-version-file: package.json
- run: npm ci
env:
CYPRESS_INSTALL_BINARY: 0
- run: npm run build:workspaces
- run: npm run test:lint
- run: npm run test:workspaces
- run: npm run test:type-check
- run: npm run test:unit