Skip to content

chore(test): make tsc happy #1743

chore(test): make tsc happy

chore(test): make tsc happy #1743

Workflow file for this run

name: Tests
on:
push:
branches:
- "**"
- "!master"
env:
DATABASE_URL: postgres://moncomptepro:[email protected]:5432/moncomptepro
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: CYPRESS_INSTALL_BINARY=0 npm ci --include=dev
- run: npm run test:lint
- run: npm run test:type-check
- run: npm run test:unit