Skip to content

Commit

Permalink
setup pnpm before node
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshay committed Sep 15, 2023
1 parent 5632ed3 commit 01da68a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
- synth
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: "8.7.5"
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: "pnpm"
- uses: pnpm/action-setup@v2
with:
version: "8.7.5"
- uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ jobs:
aws-region: ${{ inputs.aws_region }}
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
- uses: pnpm/action-setup@v2
with:
version: "8.7.5"
- uses: actions/setup-node@v3
with:
node-version: ${{ inputs.node_version }}
cache: "pnpm"
- uses: pnpm/action-setup@v2
with:
version: "8.7.5"
- run: pnpm install
- run: pnpm run deploy:one infra -- ${{ inputs.stack_environment }}
env:
Expand Down

0 comments on commit 01da68a

Please sign in to comment.