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 332a15c commit cf4e8b8Copy full SHA for cf4e8b8
.github/workflows/check-test.yaml
@@ -9,25 +9,10 @@ jobs:
9
name: Check and Test
10
runs-on: 'ubuntu-latest'
11
steps:
12
- - name: Checkout
13
- uses: actions/checkout@v2
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
14
with:
15
- fetch-depth: 0
16
-
17
- - name: Setup Node.js Environment
18
- uses: actions/setup-node@v2
19
- with:
20
- node-version: ^14
21
- cache: 'npm'
22
23
- - name: Install npm@7
24
- run: npm install -g npm@7
25
26
- - name: Install Dependencies
27
- run: npm ci
28
29
- - name: Run Checks
30
- run: npm run check
31
32
- - name: Run Tests
33
- run: npm run test
+ node-version: lts/jod
+ - run: npm ci
+ - run: npm run check
+ - run: npm test
0 commit comments