Skip to content

Commit 19d23ed

Browse files
committed
simplify build stage
1 parent 0f81a98 commit 19d23ed

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,14 @@ on:
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
12-
13-
strategy:
14-
matrix:
15-
node-version: [14.x]
16-
1712
steps:
1813
- name: Checkout repository
1914
uses: actions/checkout@v2
2015

21-
- name: Set up Node.js ${{ matrix.node-version }}
16+
- name: Set up Node.js
2217
uses: actions/setup-node@v1
2318
with:
24-
node-version: ${{ matrix.node-version }}
19+
node-version: '16'
2520

2621
- name: Set up Yarn
2722
run: npm install --global yarn && yarn --version

0 commit comments

Comments
 (0)