superlint/.github/workflows/deps-npm.yml
2022-02-22 10:51:12 -05:00

18 lines
427 B
YAML

name: Update Deps - NPM
on:
schedule:
# Sunday at 5:00pm
- cron: "0 17 * * 0"
workflow_dispatch:
jobs:
update:
name: Update NPM Dependencies
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Update Dependencies
run: ./.github/scripts/update-npm.sh
env:
id: ${{ github.run_id }}
token: ${{ secrets.GITHUB_TOKEN }}