Skip to content
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
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Build
permissions:
contents: read
pull-requests: write

on:
- pull_request
Expand All @@ -11,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.10.0 # match package.json:packageManager version.
version: 10.11.0 # match package.json:packageManager version.
- uses: actions/setup-node@v4
with:
node-version: 22
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Lint

permissions:
contents: read
pull-requests: write

on:
- pull_request

Expand All @@ -11,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.10.0 # match package.json:packageManager version.
version: 10.11.0 # match package.json:packageManager version.
- uses: actions/setup-node@v4
with:
node-version: 22
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
name: E2E Tests

permissions:
contents: read
pull-requests: write

on:
push:
branches: [main]
Expand All @@ -12,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.10.0 # match package.json:packageManager version.
version: 10.11.0 # match package.json:packageManager version.
- uses: actions/setup-node@v4
with:
node-version: 22
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Unit Tests

permissions:
contents: read
pull-requests: write

on:
- pull_request

Expand All @@ -16,7 +20,7 @@ jobs:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.10.0 # match package.json:packageManager version.
version: 10.11.0 # match package.json:packageManager version.
- uses: actions/setup-node@v4
with:
node-version: 22
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Type Check

permissions:
contents: read
pull-requests: write

on:
- pull_request

Expand All @@ -14,7 +18,7 @@ jobs:
node-version: 22
- uses: pnpm/action-setup@v4
with:
version: 9.10.0 # match package.json:packageManager version.
version: 10.11.0 # match package.json:packageManager version.

- name: Get pnpm store directory
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.15.0
22.16.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"node": ">=v22.15.0"
},
"type": "module",
"packageManager": "pnpm@9.10.0",
"packageManager": "pnpm@10.11.0",
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
Expand Down
Loading