Skip to content

Commit c463253

Browse files
authored
Merge pull request #1 from bombillazo/task/fix-pnpm-version-cicd
Fix GH actions pnpm version
2 parents 946d1ca + 2a4827d commit c463253

16 files changed

Lines changed: 462 additions & 391 deletions

.github/workflows/deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ jobs:
3737

3838
- name: Setup pnpm
3939
uses: pnpm/action-setup@v4
40-
with:
41-
version: 9
4240

4341
- name: Setup Node.js
4442
uses: actions/setup-node@v4

.github/workflows/pr-checks.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020

2121
- name: Setup pnpm
2222
uses: pnpm/action-setup@v4
23-
with:
24-
version: 9
2523

2624
- name: Setup Node.js ${{ matrix.node-version }}
2725
uses: actions/setup-node@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ yarn add @bombillazo/error-x
2626

2727
> [!WARNING]
2828
>
29-
> This library is currently in pre-1.0 development. While we strive to minimize breaking changes, the API may evolve based on feedback and real-world usage. We recommend pinning to specific versions and reviewing release notes when updating.
29+
> This library is currently in pre-v1.0 development. While we strive to minimize breaking changes, the API may evolve based on feedback and real-world usage. We recommend pinning to specific versions and reviewing release notes when updating.
3030
>
3131
> Once we reach version 1.0, we plan to minimize API changes and follow semantic versioning.
3232

biome.json

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
3-
"organizeImports": {
2+
"$schema": "https://biomejs.dev/schemas/2.2.0/schema.json",
3+
"assist": {
4+
"actions": {
5+
"source": {
6+
"organizeImports": "on",
7+
"recommended": true
8+
}
9+
},
410
"enabled": true
511
},
12+
"files": {
13+
"includes": ["src/**/*", "*.ts", "*.js", "*.json", "!dist", "!node_modules", "!coverage"]
14+
},
615
"linter": {
716
"enabled": true,
817
"rules": {
@@ -40,18 +49,5 @@
4049
"formatter": {
4150
"trailingCommas": "none"
4251
}
43-
},
44-
"files": {
45-
"include": [
46-
"src/**/*",
47-
"*.ts",
48-
"*.js",
49-
"*.json"
50-
],
51-
"ignore": [
52-
"node_modules",
53-
"dist",
54-
"coverage"
55-
]
5652
}
5753
}

commitlint.config.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ export default {
1515
'build',
1616
'ci',
1717
'chore',
18-
'revert'
19-
]
18+
'revert',
19+
],
2020
],
21-
'scope-empty': [0], // Allow empty scope
22-
'scope-case': [0], // Disable scope case checking
21+
'scope-empty': [0], // Allow empty scope
22+
'scope-case': [0], // Disable scope case checking
2323
'subject-case': [2, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']],
2424
'subject-empty': [2, 'never'],
2525
'subject-full-stop': [2, 'never', '.'],
26-
'header-max-length': [2, 'always', 100]
27-
}
28-
}
26+
'header-max-length': [2, 'always', 100],
27+
},
28+
}

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,18 @@
4545
"author": "",
4646
"license": "MIT",
4747
"devDependencies": {
48-
"@biomejs/biome": "^1.8.3",
48+
"@biomejs/biome": "^2.2.0",
4949
"@commitlint/cli": "^19.8.1",
5050
"@commitlint/config-conventional": "^19.8.1",
5151
"@microsoft/api-extractor": "^7.52.10",
52-
"@types/node": "^20.14.10",
53-
"@vitest/coverage-v8": "^2.0.3",
52+
"@types/node": "^24.3.0",
53+
"@vitest/coverage-v8": "^3.2.4",
5454
"commitizen": "^4.3.1",
55-
"cz-customizable": "^7.4.0",
55+
"cz-customizable": "^7.5.0",
5656
"husky": "^9.1.7",
57-
"tsup": "^8.1.0",
58-
"typescript": "^5.5.3",
59-
"vitest": "^2.0.3"
57+
"tsup": "^8.5.0",
58+
"typescript": "^5.9.2",
59+
"vitest": "^3.2.4"
6060
},
6161
"engines": {
6262
"node": ">=18"

0 commit comments

Comments
 (0)