Skip to content

Commit 858b041

Browse files
committed
Remove setup step
1 parent 88375dc commit 858b041

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/static_checks.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,29 @@ on:
1010
- main
1111

1212
jobs:
13-
setup:
13+
typecheck:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Check out code
1717
uses: actions/checkout@v4
1818

1919
- name: Install tools & dependencies
2020
uses: ./.github/actions/install
21-
22-
typecheck:
23-
needs: setup
24-
runs-on: ubuntu-latest
25-
steps:
21+
2622
- name: Generate virtual modules
2723
run: pnpm sync
2824

2925
- name: TypeScript check
3026
run: pnpm check:types
3127

3228
lint:
33-
needs: setup
3429
runs-on: ubuntu-latest
3530
steps:
31+
- name: Check out code
32+
uses: actions/checkout@v4
33+
34+
- name: Install tools & dependencies
35+
uses: ./.github/actions/install
36+
3637
- name: ESLint check
3738
run: pnpm check:lint

0 commit comments

Comments
 (0)