Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
GuilhermeF03 committed Mar 23, 2024
2 parents 47f1929 + 6a1e700 commit 0962481
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
run:
working-directory: ${{ matrix.working-directory }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: ${{ matrix.pnpm }}
Expand All @@ -27,6 +27,9 @@
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
cache-dependency-path: |
./code/client/package.json
./code/client/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
Expand All @@ -49,16 +52,20 @@
run:
working-directory: ${{ matrix.working-directory }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: ${{ matrix.pnpm }}º
cache: 'pnpm'
version: ${{ matrix.pnpm }}

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
cache-dependency-path: |
./code/server/package.json
./code/server/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
Expand All @@ -80,16 +87,19 @@
run:
working-directory: ${{ matrix.working-directory }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: ${{ matrix.pnpm }}

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
cache-dependency-path: |
./code/shared/package.json
./code/shared/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
Expand Down

0 comments on commit 0962481

Please sign in to comment.