Skip to content

Commit

Permalink
chore: update dependencies (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Himenon authored Dec 12, 2024
1 parent 9eb1059 commit 4d56684
Show file tree
Hide file tree
Showing 7 changed files with 5,949 additions and 4,236 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,29 @@ jobs:
build:
runs-on: ${{ matrix.os }}

# @see https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurrency
concurrency:
group: ${{ github.workflow }}-${{ matrix.os }}-${{ github.ref }}
cancel-in-progress: true

strategy:
matrix:
node-version: [20.x]
node-version: [22.x]
os: [windows-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/initialize
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
with:
version: 8.15.1
version: 9.10.0
- uses: actions/setup-node@v2
with:
node-version: "20.x"
node-version: "22.x"
cache: "pnpm"
- run: pnpm i --frozen-lockfile
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Test & Build
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
with:
ref: main
- uses: ./.github/actions/initialize
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
with:
version: 8.15.1
version: 9.10.0
- uses: actions/setup-node@v2
with:
node-version: "20.x"
node-version: "22.x"
registry-url: https://npm.pkg.github.com
scope: "@Himenon"
cache: "pnpm"
Expand All @@ -32,12 +32,12 @@ jobs:
with:
ref: main
- uses: ./.github/actions/initialize
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
with:
version: 8.15.1
version: 9.10.0
- uses: actions/setup-node@v2
with:
node-version: "20.x"
node-version: "22.x"
registry-url: https://npm.pkg.github.com
scope: "@Himenon"
cache: "pnpm"
Expand All @@ -54,12 +54,12 @@ jobs:
- uses: actions/checkout@v2
with:
ref: main
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
with:
version: 8.15.1
version: 9.10.0
- uses: actions/setup-node@v2
with:
node-version: "20.x"
node-version: "22.x"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"
- run: pnpm install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/versionUp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
with:
ref: main
- uses: ./.github/actions/initialize
- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
with:
version: 8.15.1
version: 9.10.0
- uses: actions/setup-node@v2
with:
node-version: "20.x"
node-version: "22.x"
cache: "pnpm"
- run: pnpm i --frozen-lockfile
- name: Auto version update
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/1.5.3/schema.json",
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"organizeImports": {
"enabled": true
},
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
"*.{js,jsx,json,yml,yaml,html,md,ts,tsx}": ["biome format --no-errors-on-unmatched --write"]
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@swc/core": "^1.4.11",
"@biomejs/biome": "^1.9.4",
"@swc/core": "^1.10.1",
"@types/node": "20.12.2",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
Expand All @@ -65,12 +65,12 @@
"lerna": "8.1.2",
"lint-staged": "15.2.2",
"npm-run-all": "4.1.5",
"rimraf": "^5.0.5",
"rimraf": "^5.0.10",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsup": "^8.3.5",
"typescript": "5.4.3",
"vitest": "^1.4.0"
"vitest": "^1.6.0"
},
"engines": {
"node": ">=20",
Expand Down
Loading

0 comments on commit 4d56684

Please sign in to comment.