Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump pnpm #203

Merged
merged 4 commits into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
- "pnpm-lock.yaml"

concurrency:
group: build-${{ github.sha }}
group: deploy-${{ github.ref_name }}
cancel-in-progress: true

permissions:
Expand Down Expand Up @@ -46,15 +46,8 @@ jobs:
uses: actions/setup-node@v3
with: { node-version: 20.11.1 }

- name: 🛠️ - Install Rust
uses: moonrepo/setup-rust@v1
with: {
components: clippy,
channel: '1.77.0'
}

- name: 🛠️ - Install Deps
run: npm install -g pnpm@^8 && pnpm install --frozen-lockfile
run: npm install -g pnpm@9.12.1 && pnpm install --frozen-lockfile

- name: 📦 - Build (windows)
if: ${{ matrix.os == 'windows-latest' }}
Expand Down
11 changes: 2 additions & 9 deletions .github/workflows/pr_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:

concurrency:
group: lint-${{ github.sha }}
group: lint-${{ github.ref_name }}
cancel-in-progress: true

jobs:
Expand All @@ -20,16 +20,9 @@ jobs:
with:
node-version: 20.11.1

- name: 🛠️ - Install Rust
uses: moonrepo/setup-rust@v1
with: {
components: clippy,
channel: '1.77.0'
}

- name: Install Deps 🔧
run: |
npm install -g pnpm@^8
npm install -g pnpm@9.12.1
pnpm install --frozen-lockfile

- name: Lint PR (prettier)
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- `Typescript` >=5.3.3
- `Node.js` >=20.11.1
- `Rust` >= any
- `pnpm` >= 8
- `pnpm` >= 9.12.1

<br />

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Mikhail Babynichev",
"license": "GPL-3.0",
"version": "3.5.0",
"packageManager": "pnpm@8.15.4",
"packageManager": "pnpm@9.12.1",
"scripts": {
"prepare": "husky install",
"start": "pnpm run -C packages/tosu run:dev",
Expand Down
Loading
Loading