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 c2e2a54 commit 290beb4Copy full SHA for 290beb4
.github/workflows/node.js.yml
@@ -5,9 +5,9 @@ name: Node.js CI
5
6
on:
7
push:
8
- branches: [ master ]
+ branches: [ "vnext", "master" ]
9
pull_request:
10
11
12
jobs:
13
build:
@@ -25,9 +25,8 @@ jobs:
25
uses: actions/setup-node@v2
26
with:
27
node-version: ${{ matrix.node-version }}
28
- # cache: 'npm' # enable after committing lock file from first install
29
- - run: npm i # replace with 'npm ci' after committing lock file from first install
30
-# - run: npm run lint
+ cache: 'npm'
+ - run: npm ci
+ - run: npm run lint
31
- run: npm run build
32
- - run: npm run test
33
0 commit comments