Skip to content

Merge pull request #99 from fil-one/filipa/fil-851-migrate-lp-es-cont… #179

Merge pull request #99 from fil-one/filipa/fil-851-migrate-lp-es-cont…

Merge pull request #99 from fil-one/filipa/fil-851-migrate-lp-es-cont… #179

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
# Cancel superseded runs on the same ref (e.g. rapid pushes to a PR).
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Lint, typecheck & test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test