aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-08-30 21:34:34 -0500
committerFurkan Sahin <furkan-dev@proton.me>2021-08-30 21:34:34 -0500
commit2e19dd74c660b8b7ace5eb500d33870e075d8677 (patch)
treed16c0f055228231c78aafeeba522ef5afa519fa2
parent7872741fc19b3fbcfa0482d40490fbdfda189371 (diff)
Update workflow
-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: |