Skip to content

Commit 123abdd

Browse files
committed
test: migrate to vitest
1 parent 12fcd84 commit 123abdd

File tree

8 files changed

+6306
-16751
lines changed

8 files changed

+6306
-16751
lines changed

.github/workflows/nodejs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
22
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
33

4-
name: Node.js CI
4+
name: Build
55

66
on:
77
push:
@@ -14,12 +14,12 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [12.x, 14.x, 18.x]
17+
node-version: [16, 18, 20]
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v1
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.node-version }}
2525
- run: npm ci

.gitignore

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
node_modules
2-
coverage
31
.vscode
4-
Thumbs.db
2+
coverage
53
.DS_Store
4+
node_modules
65
npm-debug.log
76
yarn-error.log

jest/customMatchers.js

-149
This file was deleted.

0 commit comments

Comments
 (0)