Skip to content

Commit 539f16e

Browse files
authored
chore(ci): use installed yarn
1 parent 2602151 commit 539f16e

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/node.js.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
pull_request:
77
branches: [ master ]
88

9+
env:
10+
YARN_IGNORE_PATH: 1
11+
912
jobs:
1013
build:
1114

@@ -24,9 +27,9 @@ jobs:
2427
- uses: actions/setup-node@v4
2528
with:
2629
node-version: 24
27-
- run: YARN_IGNORE_PATH=1 yarn
30+
- run: yarn
2831
if: steps.cache-node.outputs.cache-hit != 'true'
29-
- run: YARN_IGNORE_PATH=1 yarn lint
30-
- run: YARN_IGNORE_PATH=1 yarn typecheck
31-
- run: YARN_IGNORE_PATH=1 yarn test --coverage
32-
- run: YARN_IGNORE_PATH=1 yarn prepare
32+
- run: yarn lint
33+
- run: yarn typecheck
34+
- run: yarn test --coverage
35+
- run: yarn prepare

0 commit comments

Comments
 (0)