Skip to content

chore: Fix unable to update cache #9

chore: Fix unable to update cache

chore: Fix unable to update cache #9

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
id: install
- name: Lint
run: pnpm nx run-many --target=lint --all
- uses: ./.github/actions/update-cache
with:
cache-key: ${{ steps.install.outputs.cache-key }}
check-spell:
name: Check spelling
runs-on: ubuntu-latest
needs: lint
steps:
- name: Check out
uses: actions/checkout@v4
- uses: ./.github/actions/install
id: install
- name: Check spelling
run: pnpm nx run-many --target=check:spell --all
- uses: ./.github/actions/update-cache
with:
cache-key: ${{ steps.install.outputs.cache-key }}