-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,13 +13,25 @@ jobs: | |
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
# Setup pnpm | ||
- uses: pnpm/action-setup@v2 | ||
with: | ||
version: 8 | ||
- run: pnpm install -D | ||
- run: pnpm install -D | ||
- name: Restore cached npm dependencies | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: | | ||
node_modules | ||
~/.cache/Cypress # needed for the Cypress binary | ||
key: npm-dependencies-${{ hashFiles('package.json') }} | ||
- run: npx [email protected] affected -t docker-compose | ||
- run: pnpm install -D | ||
- name: Cache npm dependencies | ||
uses: actions/cache/save@v3 | ||
with: | ||
path: | | ||
node_modules | ||
~/.cache/Cypress # needed for the Cypress binary | ||
key: npm-dependencies-${{ hashFiles('package.json') }} | ||
|
||
# - run: npm i -D | ||
# - run: npx [email protected] affected -t docker-compose | ||
|