Skip to content

chore: Add dependency between targets #4

chore: Add dependency between targets

chore: Add dependency between targets #4

Workflow file for this run

name: "Check and build"
on:
push:
branches:
- feat/CRC-28/migration
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- uses: ./.github/actions/install
- name: Lint
run: pnpm nx run-many --target=lint --all
check-spell:
name: Check spelling
runs-on: ubuntu-latest
needs: lint
steps:
- name: Check out
uses: actions/checkout@v4
- uses: ./.github/actions/install
- name: Check spelling
run: pnpm nx run-many --target=check-spell --all