Skip to content

Commit

Permalink
Updating workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaland committed Oct 14, 2024
1 parent 1d246d3 commit 39acabe
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,22 @@ jobs:
with:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
- run: npm ci
- name: Install dependencies
run: |
if [ ! -f package-lock.json ]; then
npm install
fi
npm ci
- name: Archive production artifacts
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
- name: Archive node modules
uses: actions/upload-artifact@v2
with:
name: node_modules
path: node_modules

build-image:
needs: build
Expand Down

0 comments on commit 39acabe

Please sign in to comment.