Skip to content

Commit

Permalink
zip
Browse files Browse the repository at this point in the history
Signed-off-by: Hannah Bollar <[email protected]>
  • Loading branch information
hanbollar committed Feb 14, 2024
1 parent 0cd03d1 commit d479f29
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/npm-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,20 @@ jobs:
run: |
npm run build
- name: Upload Artifacts
- name: Upload Build Artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: ./dist

- name: Upload Artifacts
- name: Archive node_modules
run: zip -r npm-artifacts.zip ./node_modules

- name: Upload Npm Artifacts
uses: actions/upload-artifact@v3
with:
name: npm-artifacts
path: ./node_modules
path: ./npm-artifacts.zip

test:
needs: build
Expand All @@ -64,7 +67,9 @@ jobs:
uses: actions/download-artifact@v3
with:
name: npm-artifacts
path: ./node_modules

- name: extract node_modules
run: unzip npm-artifacts.zip

- name: remove potentially old dist
run: |
Expand Down

0 comments on commit d479f29

Please sign in to comment.