We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a34bf commit 8aa47e5Copy full SHA for 8aa47e5
4 files changed
.github/workflows/node.js.yml
@@ -17,16 +17,14 @@ jobs:
17
18
steps:
19
- uses: actions/checkout@v4
20
- - name: Enable corepack
21
- run: corepack enable
22
- name: Use Node.js ${{ matrix.node-version }}
23
uses: actions/setup-node@v4
24
with:
25
node-version: ${{ matrix.node-version }}
26
- cache: 'yarn'
27
- - run: yarn --immutable
28
- - run: yarn lint
29
- - run: yarn test-lcov
30
- - run: yarn transpile
+ cache: 'npm'
+ - run: npm ci
+ - run: npm run lint
+ - run: npm run test-lcov
+ - run: npm run transpile
31
- name: Coveralls
32
uses: coverallsapp/github-action@v2
0 commit comments