Skip to content

Commit cb68376

Browse files
authored
ci(build): only build on Node 14, test on all active node versions
1 parent 7f00511 commit cb68376

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
node_version: [10, 12, 14]
9+
node_version: [14]
1010
os: [ubuntu-latest, windows-latest, macos-latest]
1111
steps:
1212
- name: Checkout repository
@@ -31,7 +31,7 @@ jobs:
3131
run: yarn build
3232
- name: Lint source code
3333
run: yarn lint
34-
if: matrix.node_version == 14 && matrix.os == 'ubuntu-latest'
34+
if: matrix.os == 'ubuntu-latest'
3535
- name: Lint package sizes
3636
run: yarn size
37-
if: matrix.node_version == 14 && matrix.os == 'ubuntu-latest'
37+
if: matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)