aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/deploy.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 61d2410..9932105 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -11,12 +11,16 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Build static files
+ - name: Setup node
uses: actions/setup-node@v2
with:
node-version: '14'
- - run: npm ci
- - run: npm run build
+
+ - name: Install dependencies
+ run: npm ci
+
+ - name: Build static files
+ run: npm run build
- name: Init repo in dist folder and commit static files
run: |