Skip to content

Commit

Permalink
chore: update pnpm version (#132)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
mkilpatrick and github-actions[bot] authored Nov 4, 2024
1 parent 23de363 commit 831da8f
Show file tree
Hide file tree
Showing 8 changed files with 6,992 additions and 5,270 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/automated-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
ref: ${{ github.head_ref }}
token: ${{ secrets.BOT_REPO_SCOPED_TOKEN }}
- name: Install pnpm
uses: pnpm/action-setup@v2.4.1
uses: pnpm/action-setup@v4.0.0
- run: pnpm i --ignore-scripts

- run: pnpm run lint
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
uses: pnpm/action-setup@v2.4.1
uses: pnpm/action-setup@v4.0.0

- name: Install deps
run: pnpm i
Expand All @@ -35,6 +35,6 @@ jobs:
- name: Create build-output artifact
uses: actions/[email protected]
with:
name: build-output
name: build-output-${{ matrix.node-version }}
path: "./dist"
overwrite: true
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/action-setup@v2.4.1
uses: pnpm/action-setup@v4.0.0

- name: Set node version to 18.x
uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/third_party_notices_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
registry-url: "https://registry.npmjs.org"

- name: Install pnpm
uses: pnpm/action-setup@v2.4.1
uses: pnpm/action-setup@v4.0.0

- name: Global install generate-license-file
run: pnpm add -g generate-license-file
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install pnpm
uses: pnpm/action-setup@v2.4.1
uses: pnpm/action-setup@v4.0.0

- name: "test with node ${{ matrix.node-version }}"
uses: actions/[email protected]
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Download build artifact
uses: actions/[email protected]
with:
name: build-output
name: build-output-${{ matrix.node-version }}
path: dist/

- name: Run tests
Expand Down
Loading

0 comments on commit 831da8f

Please sign in to comment.