We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2602151 commit 539f16eCopy full SHA for 539f16e
1 file changed
.github/workflows/node.js.yml
@@ -6,6 +6,9 @@ on:
6
pull_request:
7
branches: [ master ]
8
9
+env:
10
+ YARN_IGNORE_PATH: 1
11
+
12
jobs:
13
build:
14
@@ -24,9 +27,9 @@ jobs:
24
27
- uses: actions/setup-node@v4
25
28
with:
26
29
node-version: 24
- - run: YARN_IGNORE_PATH=1 yarn
30
+ - run: yarn
31
if: steps.cache-node.outputs.cache-hit != 'true'
- - run: YARN_IGNORE_PATH=1 yarn lint
- - run: YARN_IGNORE_PATH=1 yarn typecheck
- - run: YARN_IGNORE_PATH=1 yarn test --coverage
32
- - run: YARN_IGNORE_PATH=1 yarn prepare
+ - run: yarn lint
33
+ - run: yarn typecheck
34
+ - run: yarn test --coverage
35
+ - run: yarn prepare
0 commit comments