We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa6caab commit 0ed35acCopy full SHA for 0ed35ac
.github/dependabot.yml
@@ -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
9
10
.github/workflows/node.js.yml
@@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
11
strategy:
12
matrix:
13
- node-version: [16.x]
+ node-version: [16.x, 18.x]
14
fail-fast: false
15
steps:
16
- uses: actions/checkout@v2
@@ -19,6 +19,6 @@ jobs:
19
with:
20
node-version: ${{ matrix.node-version }}
21
- name: Install dependencies
22
- run: npm ci
+ run: npm install
23
- name: Run tests
24
run: npm run test
.npmrc
@@ -0,0 +1 @@
+package-lock=false
0 commit comments