Skip to content

Commit fa70076

Browse files
committed
chore: tweaks
1 parent bf3404c commit fa70076

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches: ['**']
77

88
jobs:
9-
install-cached-deps:
9+
install-cache-deps:
1010
runs-on: ubuntu-latest
1111
name: Install and Cache deps
1212
steps:
@@ -17,7 +17,7 @@ jobs:
1717
uses: ./.github/actions/setup-deps
1818

1919
lint:
20-
needs: [install-cached-deps]
20+
needs: [install-cache-deps]
2121
runs-on: ubuntu-latest
2222
name: Lint
2323
steps:
@@ -31,7 +31,7 @@ jobs:
3131
run: yarn lint
3232

3333
typecheck:
34-
needs: [install-cached-deps]
34+
needs: [install-cache-deps]
3535
runs-on: ubuntu-latest
3636
name: Typecheck
3737
steps:
@@ -45,7 +45,7 @@ jobs:
4545
run: yarn typecheck
4646

4747
flow:
48-
needs: [install-cached-deps]
48+
needs: [install-cache-deps]
4949
runs-on: ubuntu-latest
5050
name: Flow
5151
steps:
@@ -59,7 +59,7 @@ jobs:
5959
run: yarn flow
6060

6161
test:
62-
needs: [lint, typecheck]
62+
needs: [install-cache-deps]
6363
runs-on: ubuntu-latest
6464
name: Test React 18
6565
steps:
@@ -76,7 +76,7 @@ jobs:
7676
uses: codecov/codecov-action@v2
7777

7878
test-react-17:
79-
needs: [lint, typecheck]
79+
needs: [install-cache-deps]
8080
runs-on: ubuntu-latest
8181
name: Test React 17
8282
steps:
@@ -90,7 +90,6 @@ jobs:
9090
run: yarn test:ci:react:17
9191

9292
test-website:
93-
needs: [lint, typecheck]
9493
runs-on: ubuntu-latest
9594
name: Test Website
9695
steps:

0 commit comments

Comments
 (0)