Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit ab496be

Browse files
authored
feat(dependabot.yml): add dependabot yml configuration (#154)
1 parent f78a862 commit ab496be

File tree

4 files changed

+13
-7952
lines changed

4 files changed

+13
-7952
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

0 commit comments

Comments
 (0)