Skip to content

Merge pull request #1972 from visualize-admin/fix/csp-adjustments #47

Merge pull request #1972 from visualize-admin/fix/csp-adjustments

Merge pull request #1972 from visualize-admin/fix/csp-adjustments #47

Workflow file for this run

name: Validate
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
base-checks:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
job: [lint, typecheck, test, knip]
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "yarn"
cache-dependency-path: "**/yarn.lock"
- run: yarn install --immutable --prefer-offline
- run: yarn lingui compile
- run: yarn ${{ matrix.job }}