chore(deps): bump eslint from 8.28.0 to 9.9.0 #222
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
on: [pull_request, workflow_dispatch] | |
name: Update dist folder | |
jobs: | |
update-dist-src: | |
if: "${{ contains(github.event.pull_request.labels.*.name, 'autorelease: pending') }}" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.ref }} | |
token: ${{ secrets.GOOGLEWORKSPACE_BOT_TOKEN }} | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: Install dependencies | |
run: npm ci | |
- name: Update dist and doc folders | |
run: | | |
npm run dist | |
npm run doc | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "chore: Update dist/ and docs/ directories" | |
commit_user_name: Google Workspace Bot | |
commit_user_email: googleworkspace-bot@google.com | |
commit_author: Google Workspace Bot <googleworkspace-bot@google.com> |