Bump lucide-react from 0.447.0 to 0.453.0 in /pages #13
Workflow file for this run
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
# pages の dependabot はバージョン更新後に npm install をしてあげないと package-lock.json との統合性が取れなくなるっぽいのでそれをする | |
name: npm install after dependabot | |
on: | |
pull_request: | |
branches: | |
- pre-development | |
paths: | |
- 'pages/**' | |
env: | |
NODE_VERSION: 20.16.0 | |
permissions: | |
contents: write | |
jobs: | |
npm-install: | |
runs-on: ubuntu-latest | |
environment: | |
name: bot | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: npm install | |
run: npm install | |
- name: commit and push | |
run: | | |
git config user.name "maretol-bot" | |
git config user.email "[email protected]" | |
git add . | |
git commit -m "[bot]chore(deps): update dependencies" | |
git push |