We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea1052 commit a240551Copy full SHA for a240551
.github/workflows/build.yml
@@ -12,19 +12,14 @@ on:
12
jobs:
13
build:
14
runs-on: ubuntu-latest
15
- strategy:
16
- matrix:
17
- node-version: [16]
18
-
19
steps:
20
- # Checkout doc repo and its dependencies
+ # Checkout and setup
21
- name: Checkout
22
- uses: actions/checkout@v2
23
- # Setup Node
24
- - name: Setup (Node.js ${{ matrix.node-version }})
25
- uses: actions/setup-node@v1
+ uses: actions/checkout@v3
+ - name: Setup
+ uses: actions/setup-node@v3
26
with:
27
- node-version: ${{ matrix.node-version }}
+ node-version: 16
28
# Install and build
29
- name: Install
30
run: npm ci
0 commit comments