We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b11d52 commit 30c227eCopy full SHA for 30c227e
.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/node.js.yml
@@ -0,0 +1,25 @@
+name: Node.js CI
+
+on:
+ push:
+ branch: master
+ pull_request:
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ strategy:
15
+ matrix:
16
+ node-version: [20.x]
17
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - name: Use Node.js ${{ matrix.node-version }}
21
+ uses: actions/setup-node@v1
22
+ with:
23
+ node-version: ${{ matrix.node-version }}
24
+ - run: npm ci
25
+ - run: npm run test
0 commit comments