Skip to content

Commit a359522

Browse files
build(deps): bump pnpm/action-setup from 5 to 6 (#11)
* build(deps): bump pnpm/action-setup from 5 to 6 Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 5 to 6. - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](pnpm/action-setup@v5...v6) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * ci: two steps * ci: tweaks * ci: fix install --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kiko Beats <josefrancisco.verdu@gmail.com>
1 parent c6895d8 commit a359522

4 files changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,11 @@ jobs:
4545
with:
4646
node-version: lts/*
4747
- name: Setup PNPM
48-
uses: pnpm/action-setup@v5
48+
uses: pnpm/action-setup@v6
4949
with:
5050
version: latest
51-
run_install: true
51+
- name: Install
52+
run: pnpm install --ignore-scripts
5253
- name: Test
5354
run: pnpm test
5455
- name: Report

.github/workflows/pull_request.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ jobs:
2222
with:
2323
node-version: lts/*
2424
- name: Setup PNPM
25-
uses: pnpm/action-setup@v5
25+
uses: pnpm/action-setup@v6
2626
with:
2727
version: latest
28-
run_install: true
28+
- name: Install
29+
run: pnpm install --ignore-scripts
2930
- name: Test
3031
run: pnpm test
3132
- name: Report

.npmrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,4 @@ resolution-mode=highest
88
save-prefix=~
99
save=false
1010
shamefully-hoist=true
11-
strict-peer-dependencies=false
12-
11+
strict-peer-dependencies=false

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"devDependencies": {
3434
"@commitlint/cli": "latest",
3535
"@commitlint/config-conventional": "latest",
36-
"@ksmithut/prettier-standard": "latest",
3736
"ava": "latest",
3837
"c8": "latest",
3938
"ci-publish": "latest",
@@ -77,7 +76,6 @@
7776
},
7877
"nano-staged": {
7978
"*.js": [
80-
"prettier-standard",
8179
"standard --fix"
8280
],
8381
"package.json": [

0 commit comments

Comments
 (0)