enable dependabot workflow

This commit is contained in:
moloch--
2022-09-05 11:14:13 -07:00
parent ae0432e4f6
commit 3839b7971f
2 changed files with 18 additions and 6 deletions
+16
View File
@@ -0,0 +1,16 @@
# Basic set up for three package managers
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
# Maintain dependencies for npm
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
+2 -6
View File
@@ -1,11 +1,11 @@
name: NPM Publish
name: Build Check
on:
push:
branches: [master]
jobs:
publish:
build-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
@@ -15,7 +15,3 @@ jobs:
- run: npm install
- run: npm run build
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}