Skip to content

Commit

Permalink
cache all build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
dylankelly committed Jul 25, 2023
1 parent 1282afd commit 25dc85d
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
with:
name: playground
if-no-files-found: error
path: |
.playground/node_modules
.playground/.nuxt
node_modules
path: .playground
Test:
needs: build
Expand All @@ -25,7 +29,10 @@ jobs:
uses: actions/download-artifact@v3
with:
name: playground
path: .playground
path: |
.playground/node_modules
.playground/.nuxt
node_modules
- uses: actions/setup-node@v3
with:
node-version: 18
Expand All @@ -41,7 +48,10 @@ jobs:
uses: actions/download-artifact@v3
with:
name: playground
path: .playground
path: |
.playground/node_modules
.playground/.nuxt
node_modules
- uses: actions/setup-node@v3
with:
node-version: 18
Expand Down

0 comments on commit 25dc85d

Please sign in to comment.