Skip to content
This repository was archived by the owner on Aug 14, 2024. It is now read-only.

Commit 4c22fdb

Browse files
authored
feat(dependabot.yml): add dependabot yml configuration (#37)
1 parent 22667ce commit 4c22fdb

File tree

4 files changed

+13
-7571
lines changed

4 files changed

+13
-7571
lines changed

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "daily"

.github/workflows/node.js.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [16.x]
13+
node-version: [16.x, 18.x]
1414
fail-fast: false
1515
steps:
1616
- uses: actions/checkout@v2
@@ -19,6 +19,6 @@ jobs:
1919
with:
2020
node-version: ${{ matrix.node-version }}
2121
- name: Install dependencies
22-
run: npm ci
22+
run: npm install
2323
- name: Run tests
2424
run: npm run test

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

0 commit comments

Comments
 (0)