Skip to content

Commit

Permalink
feat(action): Add nextjs out path
Browse files Browse the repository at this point in the history
  • Loading branch information
1ilsang committed May 7, 2024
1 parent 5324454 commit 8bd0c2c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/playwright-install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ runs:
- name: Restore Next.js related caches
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/.next/cache
path: |
${{ github.workspace }}/.next
${{ github.workspace }}/out
key: ${{ runner.os }}-nextjs-store-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
restore-keys: |
${{ runner.os }}-nextjs-store-${{ hashFiles('**/pnpm-lock.yaml') }}-
Expand Down

0 comments on commit 8bd0c2c

Please sign in to comment.