Skip to content

Commit 8c6e8b4

Browse files
committed
fix: tsconfig.json and version action
1 parent e1518cf commit 8c6e8b4

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/version.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,18 @@ jobs:
2727
- name: Install dependencies
2828
run: npm ci
2929

30+
- name: Lint
31+
run: npm run lint
32+
33+
- name: Test
34+
run: npm run test:ci
35+
3036
- name: Create Version PR
3137
uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b # v1
3238
with:
3339
version: npm run version
3440
commit: 'chore(release): version packages'
3541
title: 'chore(release): version packages'
42+
commitMode: github-api
3643
env:
3744
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"declaration": true,
1212
"outDir": "dist",
1313
"rootDir": "src",
14-
"types": ["vitest"]
14+
"types": ["vitest"],
15+
"ignoreDeprecations": "6.0"
1516
},
1617
"include": ["src/**/*"],
1718
"exclude": ["dist", "node_modules", "**/*.test.ts"]

0 commit comments

Comments
 (0)