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 e53bb80 commit add8ee1Copy full SHA for add8ee1
.github/workflows/ci.yml
@@ -13,14 +13,15 @@ jobs:
13
os: [ubuntu-latest, windows-latest, macOS-latest]
14
15
steps:
16
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
17
- name: Use Node.js ${{ matrix.node-version }}
18
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v4
19
with:
20
node-version: ${{ matrix.node-version }}
21
+ cache: 'npm'
22
- name: Install dependencies
- run: yarn install --ignore-engines --verbose
23
+ run: npm ci
24
- name: Run tests
- run: yarn test
25
+ run: npm test
26
env:
27
CI: true
0 commit comments