We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 39ed09e + a833ab0 commit 5e1b66aCopy full SHA for 5e1b66a
.github/workflows/blank.yml
@@ -14,7 +14,7 @@ jobs:
14
strategy:
15
matrix:
16
node: [22]
17
- timeout-minutes: 300
+ timeout-minutes: 30
18
steps:
19
- name: checkout pushed commit
20
uses: actions/checkout@v3
@@ -24,8 +24,19 @@ jobs:
24
uses: actions/setup-node@v3
25
with:
26
node-version: ${{ matrix.node }}
27
- - run: |
28
- yarn install
29
- yarn typecheck
30
- yarn lint
31
- yarn test
+ - name: cache dependencies
+ uses: actions/cache@v3
+ with:
+ path: |
+ node_modules
32
+ key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
33
+ restore-keys: |
34
+ ${{ runner.os }}-yarn-
35
+ - name: install dependencies
36
+ run: yarn install --frozen-lockfile
37
+ - name: typecheck
38
+ run: yarn typecheck
39
+ - name: lint
40
+ run: yarn lint
41
+ - name: test
42
+ run: yarn test
0 commit comments