Skip to content

Commit 8cc566f

Browse files
authored
chore: cleanup deps
* follow deprecation guide * add specific node version * dedupe deps Ref: #80
1 parent 17d2f74 commit 8cc566f

File tree

4 files changed

+57
-99
lines changed

4 files changed

+57
-99
lines changed

.github/workflows/build-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: 20.11.1
16+
node-version-file: .tool-versions
1717
registry-url: "https://registry.npmjs.org"
1818

1919
- run: npm ci

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodejs 22.14.0

package-lock.json

Lines changed: 45 additions & 96 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vitest.config.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@ export default defineConfig({
1010
reportOnFailure: true,
1111
},
1212
reporters: process.env.GITHUB_ACTIONS
13-
? ["basic", "github-actions"]
14-
: ["basic"],
13+
? [
14+
[
15+
"default",
16+
{
17+
summary: false,
18+
},
19+
],
20+
"github-actions",
21+
]
22+
: ["default"],
1523
},
1624
});

0 commit comments

Comments
 (0)