Update package lock #1016
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update package lock | |
'on': | |
schedule: | |
- cron: 13 9,16,23 * * * | |
jobs: | |
update_package_lock: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.9.0 | |
- run: rm package-lock.json | |
- run: npm install | |
- run: npm test | |
- uses: gr2m/create-or-update-pull-request-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
path: package-lock.json | |
title: update package lock | |
body: bring lock in sync | |
branch: package-lock | |
labels: npm | |
commit-message: 'chore(deps): lock' |