Skip to content

Commit 2cac706

Browse files
authored
Merge pull request #85 from Rahuljagwani/buildchanges
Pages build is broken
2 parents aa4e593 + e8ffc51 commit 2cac706

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/buildAndDeploy.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
name: Build and Deploy
2+
23
on: workflow_dispatch
34
jobs:
45
build-and-deploy:
56
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
node-version: [16.x]
610
steps:
711
- name: Checkout 🛎️
812
uses: actions/checkout@v2.3.1
9-
13+
- name: Use Node.js ${{ matrix.node-version }}
14+
uses: actions/setup-node@v3
15+
with:
16+
node-version: ${{ matrix.node-version }}
1017
- name: Install and Build 🔧
1118
run: |
1219
npm ci

0 commit comments

Comments
 (0)