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.
1 parent cb27c0e commit c1b48aeCopy full SHA for c1b48ae
.github/workflows/ci.yml
@@ -12,23 +12,26 @@ jobs:
12
13
strategy:
14
matrix:
15
- node-version: [18.x]
+ node-version: [20.x]
16
17
steps:
18
- uses: actions/checkout@v4
19
+
20
- name: Use Node.js ${{ matrix.node-version }}
21
uses: actions/setup-node@v4
22
with:
23
node-version: ${{ matrix.node-version }}
24
+ cache: "yarn"
25
26
- name: Install dependencies
- run: |
- npm ci
27
+ run: yarn install --frozen-lockfile
28
29
- name: Lint
- npm run lint
30
+ run: yarn lint
31
32
- name: Test
- npm test
33
+ run: yarn test
34
35
- name: Upload coverage
36
if: success()
37
uses: actions/upload-artifact@v4
0 commit comments