This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Fix lint #107
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: Fix lint | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: 0 10 * * 0 | |
| jobs: | |
| fix-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '16.10.x' | |
| - name: Run lint script | |
| run: | | |
| yarn install --frozen-lockfile | |
| yarn lint:fix | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v3 | |
| with: | |
| commit-message: Automated lint | |
| title: Automated lint | |
| body: | | |
| - Changes from lint script | |
| Auto-generated by Github Actions | |
| branch: automated-lint |