Skip to content

Commit 48d9e0c

Browse files
authored
Merge pull request #101 from raduwen/ci/fix-build
ci/fix build
2 parents 10a4e9a + 2ba51d2 commit 48d9e0c

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/node.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,20 @@ name: Node.js CI
55

66
on:
77
push:
8-
branches: [ master ]
8+
branches: [ main ]
99
pull_request:
10-
branches: [ master ]
1110

1211
jobs:
13-
build:
14-
12+
lint:
1513
runs-on: ubuntu-latest
16-
1714
strategy:
1815
matrix:
19-
node-version: [10.x, 12.x, 14.x]
20-
16+
node-version: [14.x]
2117
steps:
2218
- uses: actions/checkout@v2
2319
- name: Use Node.js ${{ matrix.node-version }}
2420
uses: actions/setup-node@v1
2521
with:
2622
node-version: ${{ matrix.node-version }}
2723
- run: yarn
28-
- run: yarn build
24+
- run: yarn lint

0 commit comments

Comments
 (0)