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 f653661 commit d0cd45eCopy full SHA for d0cd45e
.github/workflows/deploy.yml
@@ -7,15 +7,16 @@ jobs:
7
runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v2
10
- - name: Install and Build
+ - name: Set up Node.js
11
uses: actions/setup-node@v1
12
with:
13
node-version: '18.x'
14
- run: |
15
- npm install
16
- npm run build
+ - name: Install Dependencies
+ run: npm install
+ - name: Build
17
+ run: npm run build
18
- name: Deploy
19
uses: JamesIves/[email protected]
20
21
branch: gh-pages
- folder: build
22
+ folder: build
0 commit comments