Skip to content

Commit

Permalink
GitHub Actions - fix pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
Inrixia committed Oct 13, 2024
1 parent 7a3d35c commit 5ee173d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/autoBuildDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ jobs:
- uses: actions/checkout@v4
- name: Install pnpm 📥
uses: pnpm/action-setup@v4
with:
version: latest

- name: Install Node.js 📥
uses: actions/setup-node@v4
with:
cache: "pnpm"
node-version: latest

- name: Install dependencies 📥
run: pnpm install
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/autoRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,14 @@ jobs:
- uses: actions/checkout@v4
- name: Install pnpm 📥
uses: pnpm/action-setup@v4
with:
version: latest

- name: Install Node.js 📥
uses: actions/setup-node@v4
with:
cache: "pnpm"
node-version: latest

- name: Install dependencies 📥
run: pnpm install
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/autoTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ jobs:
- uses: actions/checkout@v4
- name: Install pnpm 📥
uses: pnpm/action-setup@v4
with:
version: latest

- name: Install Node.js 📥
uses: actions/setup-node@v4
with:
cache: "pnpm"
node-version: latest

- name: Install dependencies 📥
run: pnpm install
Expand All @@ -40,11 +43,14 @@ jobs:
- uses: actions/checkout@v4
- name: Install pnpm 📥
uses: pnpm/action-setup@v4
with:
version: latest

- name: Install Node.js 📥
uses: actions/setup-node@v4
with:
cache: "pnpm"
node-version: latest

- name: Install dependencies 📥
run: pnpm install
Expand Down

0 comments on commit 5ee173d

Please sign in to comment.