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 e7ae272 commit b58553dCopy full SHA for b58553d
1 file changed
.github/workflows/buildAndDeploy.yml
@@ -4,18 +4,17 @@ on: workflow_dispatch
4
jobs:
5
build-and-deploy:
6
runs-on: ubuntu-latest
7
+ strategy:
8
+ matrix:
9
+ node-version: [16.x]
10
steps:
11
- name: Checkout 🛎️
12
uses: actions/checkout@v2.3.1
13
+ - name: Use Node.js ${{ matrix.node-version }}
14
+ uses: actions/setup-node@v3
15
with:
- node-version: 16
- cache: 'npm'
-
16
+ node-version: ${{ matrix.node-version }}
17
- name: Install and Build 🔧
- env:
18
- run: |
19
npm ci
20
npm run build
21
0 commit comments