We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d589727 commit 322a258Copy full SHA for 322a258
.github/dependabot.yml
@@ -0,0 +1,8 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: npm
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ open-pull-requests-limit: 5
8
+ versioning-strategy: increase-if-necessary
.github/workflows/test.yml
@@ -0,0 +1,22 @@
+name: Test
+
+on: push
+jobs:
+ build:
+ runs-on: ubuntu-latest
9
10
+ strategy:
11
+ matrix:
12
+ node-version: [20.x, 22.x]
13
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Use Node.js ${{ matrix.node-version }}
17
+ uses: actions/setup-node@v1
18
+ with:
19
+ node-version: ${{ matrix.node-version }}
20
+ - run: npm ci
21
+ - run: npm run test -- --coverage
22
+ - run: npx codecov
0 commit comments