Skip to content
This repository was archived by the owner on Aug 21, 2023. It is now read-only.

Commit 5eb1fa0

Browse files
committed
chore: only run GitHub actions on Node 12 / Linux
1 parent 8ca33af commit 5eb1fa0

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/test.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,16 @@ on:
1111

1212
jobs:
1313
lint-and-test:
14-
name: Test on node ${{ matrix.node-version }} and ${{ matrix.os }}
15-
runs-on: ${{ matrix.os }}
16-
strategy:
17-
matrix:
18-
node-version: [10, 12]
19-
os: [ubuntu-latest, windows-latest, macOS-latest]
14+
name: Test on node 12 and ubuntu-latest
15+
runs-on: ubuntu-latest
2016

2117
steps:
2218
- uses: actions/checkout@v1
2319
with:
2420
fetch-depth: 1
2521
- uses: actions/setup-node@v1
2622
with:
27-
node-version: ${{ matrix.node-version }}
23+
node-version: 12
2824
- run: yarn
2925
- run: yarn lint
3026
- run: yarn build

0 commit comments

Comments
 (0)