We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4acdef commit 2594ef8Copy full SHA for 2594ef8
1 file changed
.github/workflows/nodejs.yml
@@ -6,26 +6,19 @@ on:
6
- development
7
8
jobs:
9
- setup-node:
10
- runs-on: ubuntu-latest
11
- environment: github-pages
12
-
13
- steps:
14
- - name: Checkout 🛎️
15
- uses: actions/checkout@master
16
17
- - name: Use Node.js 16
18
- uses: actions/setup-node@master
19
- with:
20
- node-version: 16
21
22
build-and-deploy:
23
runs-on: ubuntu-latest
24
environment: github-pages
25
- needs:
26
- - setup-node
27
28
steps:
+ - name: Checkout 🛎️
+ uses: actions/checkout@v3
+
+ - name: Use Node.js 16
+ uses: actions/setup-node@master
+ with:
+ node-version: 16
29
# The build script the action should run prior to deploying.
30
- name: Build Production React.js page 🔧
31
run: |
0 commit comments