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.
2 parents aa4e593 + e8ffc51 commit 2cac706Copy full SHA for 2cac706
1 file changed
.github/workflows/buildAndDeploy.yml
@@ -1,12 +1,19 @@
1
name: Build and Deploy
2
+
3
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:
16
+ node-version: ${{ matrix.node-version }}
17
- name: Install and Build 🔧
18
run: |
19
npm ci
0 commit comments