Skip to content

Commit 8e13fea

Browse files
committed
ci: drop Node.js 10 and add 16
1 parent f83634c commit 8e13fea

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/ci.yml

+14-14
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ on:
44
pull_request:
55
release:
66
types:
7-
- created
7+
- created
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
1313
node-version:
14-
- 10.x
15-
- 12.x
16-
- 14.x
14+
- '12'
15+
- '14'
16+
- '16'
1717
steps:
18-
- name: Checkout
19-
uses: actions/checkout@v2
20-
- name: Set up Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v1
22-
with:
23-
node-version: ${{ matrix.node-version }}
24-
- run: yarn install --frozen-lockfile
25-
- run: yarn lint
26-
- run: yarn test
27-
- run: yarn build
18+
- name: Checkout
19+
uses: actions/checkout@v2
20+
- name: Set up Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v1
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
- run: yarn install --frozen-lockfile
25+
- run: yarn lint
26+
- run: yarn test
27+
- run: yarn build

0 commit comments

Comments
 (0)