Skip to content

Commit a70db6f

Browse files
committed
bump deployment version to node 20
1 parent ab4544a commit a70db6f

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/BuildAndDeploy.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,20 @@ on:
77
push:
88
branches: ['main']
99

10+
env:
11+
node-version: 20
12+
1013
jobs:
1114
build:
1215
environment: github-pages
1316
runs-on: ubuntu-latest
1417

15-
strategy:
16-
matrix:
17-
node-version: [19.x]
18-
1918
steps:
2019
- uses: actions/checkout@v4
21-
- name: Use Node.js ${{ matrix.node-version }}
20+
- name: Use Node.js ${{ env.node-version }}
2221
uses: actions/setup-node@v4
2322
with:
24-
node-version: ${{ matrix.node-version }}
23+
node-version: ${{ env.node-version }}
2524
cache: 'npm'
2625

2726
- name: Setup Secrets

0 commit comments

Comments
 (0)