Skip to content

Commit e632bf9

Browse files
committed
fix: remove github actions matrix
1 parent b93cc11 commit e632bf9

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,16 @@ name: CI
22
on: [push]
33
jobs:
44
build:
5-
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
6-
7-
runs-on: ${{ matrix.os }}
8-
strategy:
9-
matrix:
10-
node: ['12.x', '14.x', '16.x']
11-
os: [ubuntu-latest, macOS-latest]
12-
5+
name: Lint, test, build and release on Node 16
6+
runs-on: ubuntu-latest
137
steps:
148
- name: Checkout repo
159
uses: actions/checkout@v2
1610

17-
- name: Use Node ${{ matrix.node }}
11+
- name: Use Node 16
1812
uses: actions/setup-node@v1
1913
with:
20-
node-version: ${{ matrix.node }}
14+
node-version: 16
2115

2216
- name: Install deps and build (with cache)
2317
uses: bahmutov/npm-install@v1

0 commit comments

Comments
 (0)