We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f981ddc commit 81374e7Copy full SHA for 81374e7
.github/workflows/deploy.yml
@@ -20,13 +20,18 @@ jobs:
20
21
steps:
22
- uses: actions/checkout@v2
23
+
24
- name: Use Node.js ${{ matrix.node-version }}
25
uses: actions/setup-node@v2
26
with:
27
node-version: ${{ matrix.node-version }}
28
cache: 'npm'
- - run: npm install --production
29
- # - run: npm run build --if-present
30
+ - name: Install and Build 🔧
31
+ run: |
32
+ npm install --production
33
+ npm run build
34
35
- name: Deploy
36
uses: JamesIves/github-pages-deploy-action@4.1.4
37
0 commit comments