Skip to content

Commit 72201cc

Browse files
committed
feat: run on node
1 parent cd4eb64 commit 72201cc

13 files changed

Lines changed: 134 additions & 10092 deletions

File tree

.github/dependabot.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
version: 2
22
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
37
- package-ecosystem: "npm"
48
directory: "/"
59
schedule:
610
interval: "monthly"
7-
reviewers:
8-
- "Naramsim"
911
groups:
1012
dependencies:
1113
patterns:
1214
- "*"
13-
versioning-strategy: increase
15+
versioning-strategy: auto

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
node-version: [ 16, 18, 20 ]
10+
node-version: [ 16, 18, 20, lts/*, latest ]
1111
steps:
1212
- name: Clone repository
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v6
1414
- name: Setup node
15-
uses: actions/setup-node@v2
15+
uses: actions/setup-node@v6
1616
with:
1717
node-version: ${{ matrix.node }}
1818
- name: Install dependencies
@@ -24,4 +24,4 @@ jobs:
2424
- name: Unit test
2525
run: npm t
2626
- name: Upload coverage
27-
uses: codecov/codecov-action@v2
27+
uses: codecov/codecov-action@v6

.npmignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
node_modules
22
test
3-
.travis.yml
4-
webpack.config.js
3+
.github

0 commit comments

Comments
 (0)