Update package lock #1023
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 8 * * * | |
jobs: | |
update_package_lock: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 20.9.0 | |
browser: | |
- chrome | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: rm package-lock.json | |
- run: npm install-test | |
env: | |
BROWSER: ${{ matrix.browser }} | |
- uses: gr2m/create-or-update-pull-request-action@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
path: package-lock.json | |
title: Regenerate package lock | |
body: bring lock in sync | |
branch: package-lock | |
labels: npm | |
commit-message: 'chore(deps): lock' |