Skip to content

Migrate /lp/barcelona to design tokens + shared components (FIL-854) #182

Migrate /lp/barcelona to design tokens + shared components (FIL-854)

Migrate /lp/barcelona to design tokens + shared components (FIL-854) #182

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