We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00bcd2c commit d479aabCopy full SHA for d479aab
.github/workflows/main.yml
@@ -14,13 +14,13 @@ jobs:
14
- uses: actions/setup-node@v4
15
with:
16
node-version: 18
17
- cache: yarn
+ cache: npm
18
19
- - run: yarn install --immutable
20
- - run: yarn build
+ - run: npm ci
+ - run: npm run build
21
22
- - name: Verify that `yarn build` did not change outputs
+ - name: Verify that `npm run build` did not change outputs
23
run: git diff --exit-code
24
25
- - run: yarn test
26
- - run: yarn lint
+ - run: npm test
+ - run: npm run lint
0 commit comments