chore(deps): add ^15.3.24 remove ^15.3.23 (devDependencies.npm-pkgbuild) #103
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: | |
push: | |
paths: | |
- package.json | |
schedule: | |
- cron: 13 8 * * 6 | |
jobs: | |
update_package_lock: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 22.4.1 | |
browser: | |
- chrome | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- uses: actions/setup-node@v4.0.3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: rm package-lock.json | |
- run: npx playwright install | |
- 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" |