superlint/.github/workflows/deps-npm.yml

17 lines
369 B
YAML
Raw Normal View History

2022-02-21 10:04:19 -05:00
name: Update Deps - NPM
on:
schedule:
# Sunday at 5:00pm
- cron: "0 17 * * 0"
workflow_dispatch:
jobs:
update:
2022-02-21 10:07:36 -05:00
name: Update NPM Dependencies
2022-02-21 10:04:19 -05:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2022-02-21 10:07:36 -05:00
- run: ./.github/scripts/update-npm.sh
2022-02-21 10:04:19 -05:00
env:
id: ${{ github.run_id }}
2022-02-22 10:33:03 -05:00
token: ${{ secrets.GITHUB_TOKEN }}