Skip to content

Commit

Permalink
Separate static checks into a separate job
Browse files Browse the repository at this point in the history
  • Loading branch information
illright committed Jun 17, 2024
1 parent 0798d9f commit 2796606
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,21 @@ concurrency:
cancel-in-progress: true

jobs:
static-checks:
name: Static checks
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup
uses: ./.github/actions/setup

- name: Run checks
run: |
turbo run check-formatting lint typecheck
pnpm check-monorepo
quality-checks:
name: Quality checks
timeout-minutes: 10
Expand All @@ -27,10 +42,9 @@ jobs:
with:
node-version: ${{ matrix.node }}

- name: Run checks
- name: Run tests
run: |
turbo run check-formatting lint typecheck test
pnpm check-monorepo
turbo run test
- name: Try building
run: turbo run build

0 comments on commit 2796606

Please sign in to comment.