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 de29329 commit eae275dCopy full SHA for eae275d
.github/workflows/nodejs.yml
@@ -1,33 +1,21 @@
1
name: Code quality
2
3
-on:
4
- push:
5
- branches:
6
- - master
7
- paths:
8
- - ".github/**"
9
- - "yarn.lock"
10
- - "**.js"
11
- pull_request:
12
13
14
15
+on: push
16
17
jobs:
18
test_and_lint:
19
runs-on: ubuntu-latest
20
strategy:
21
matrix:
22
- node: [10, 12, 14, 16]
+ node: [12, 14, 16, 18]
23
steps:
24
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
25
26
- - uses: actions/cache@master
+ - uses: actions/cache@v3
27
id: node_modules_cache
28
with:
29
path: node_modules
30
- key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
+ key: ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }}
31
32
- run: yarn install --frozen-lockfile
33
if: steps.node_modules_cache.outputs.cache-hit != 'true'
0 commit comments