Skip to content

Commit

Permalink
ci(github actions): try
Browse files Browse the repository at this point in the history
  • Loading branch information
anteqkois committed May 3, 2024
1 parent e5fec43 commit f4a065d
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/deploy-changed-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f4a065d

Please sign in to comment.