Bump form-data from 3.0.1 to 3.0.4 #435
This file contains hidden or 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: "Build and commit" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - ci/* | |
| jobs: | |
| run: | |
| name: "Build and commit" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.x | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Update source code | |
| run: npm run build && npm run package | |
| - name: Commit changes | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| author_name: GitHub Actions | |
| author_email: 41658782+ChanTsune@users.noreply.github.com | |
| message: "build commit" | |
| add: "dist/*.js" | |
| env: | |
| GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' |