Skip to content

Commit cb6a654

Browse files
committed
Remove Node 8 support
1 parent e93bf41 commit cb6a654

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,26 @@ on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98

109
strategy:
1110
matrix:
1211
node-version:
13-
- 8.x
1412
- 10.x
1513
- 12.x
1614

1715
steps:
18-
- uses: actions/checkout@v1
19-
- name: Use Node.js ${{ matrix.node-version }}
20-
uses: actions/setup-node@v1
21-
with:
22-
node-version: ${{ matrix.node-version }}
23-
- name: Install
24-
run: |
25-
yarn install \
26-
--non-interactive \
27-
--frozen-lockfile
28-
- name: Test
29-
run: yarn test
30-
env:
31-
CI: true
16+
- uses: actions/checkout@v1
17+
- name: Use Node.js ${{ matrix.node-version }}
18+
uses: actions/setup-node@v1
19+
with:
20+
node-version: ${{ matrix.node-version }}
21+
- name: Install
22+
run: |
23+
yarn install \
24+
--non-interactive \
25+
--frozen-lockfile
26+
- name: Test
27+
run: yarn test
28+
env:
29+
CI: true

0 commit comments

Comments
 (0)