We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aa2c68 commit e4264d3Copy full SHA for e4264d3
.github/workflows/test.yml
@@ -21,19 +21,19 @@ jobs:
21
- name: Set up Node.js
22
uses: actions/setup-node@v3
23
with:
24
- node-version: 18
25
- cache: "yarn"
+ node-version: 23
+ cache: 'npm'
26
27
- name: Cache node_modules
28
uses: actions/cache@v4
29
30
path: node_modules
31
- key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}
+ key: ${{ runner.os }}-node_modules-${{ hashFiles('**/package-lock.json') }}
32
restore-keys: |
33
${{ runner.os }}-node_modules-
34
35
- name: Install dependencies
36
- run: yarn install
+ run: npm install
37
38
- name: Run Jest tests
39
- run: yarn test:ci
+ run: npm run test:ci
0 commit comments