Skip to content
This repository has been archived by the owner on Jul 31, 2024. It is now read-only.

Commit

Permalink
feat(dependabot.yml): add dependabot yml configuration (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabnguess authored Jan 25, 2023
1 parent ec24431 commit 363ae64
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7,438 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
node-version: [16.x, 18.x]
- name: Install dependencies
run: npm ci
run: npm install
- name: Run ESLint
run: npm run lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [16.x, 18.x]
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand All @@ -30,6 +30,6 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
run: npm install
- name: Run tests
run: npm run test
run: npm run test
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock=false
Loading

0 comments on commit 363ae64

Please sign in to comment.