Bump webpack from 5.75.0 to 5.104.1 #36
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: Code Formatting | |
| # on: | |
| # pull_request: | |
| # branches: [main] | |
| # # Enables a button on Actions tab | |
| # workflow_dispatch: | |
| # jobs: | |
| # format: | |
| # runs-on: ubuntu-latest | |
| # steps: | |
| # - name: checkout | |
| # uses: actions/checkout@master | |
| # with: | |
| # ref: main | |
| # - uses: actions/setup-node@v2 | |
| # with: | |
| # node-version: "14.x" | |
| # - run: npm ci | |
| # - run: npm run format | |
| # - name: Commit changes | |
| # run: | | |
| # git config user.name github-actions | |
| # git config user.email github-actions@github.com | |
| # git add --all | |
| # git commit -m "Automatic Code Formatting" || echo "No changes to commit" | |
| # git push |