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.
2 parents 10a4e9a + 2ba51d2 commit 48d9e0cCopy full SHA for 48d9e0c
.github/workflows/node.yml
@@ -5,24 +5,20 @@ name: Node.js CI
5
6
on:
7
push:
8
- branches: [ master ]
+ branches: [ main ]
9
pull_request:
10
11
12
jobs:
13
- build:
14
-
+ lint:
15
runs-on: ubuntu-latest
16
17
strategy:
18
matrix:
19
- node-version: [10.x, 12.x, 14.x]
20
+ node-version: [14.x]
21
steps:
22
- uses: actions/checkout@v2
23
- name: Use Node.js ${{ matrix.node-version }}
24
uses: actions/setup-node@v1
25
with:
26
node-version: ${{ matrix.node-version }}
27
- run: yarn
28
- - run: yarn build
+ - run: yarn lint
0 commit comments