Bump undici from 5.28.3 to 5.28.4 #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
name: Dependabot Build | |
on: | |
push: | |
branches: | |
- dependabot/** | |
permissions: | |
contents: write | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: volta-cli/action@v4 | |
- name: Install dependencies | |
run: | | |
npm install | |
- name: Run Build | |
run: | | |
npm run build | |
- name: Push Changes | |
run: | | |
git config user.name dependabot[bot] | |
git config user.email 49699333+dependabot[bot]@users.noreply.github.com | |
git commit -am "Update dist folder" && git push |