| 12345678910111213141516171819202122232425262728 |
- name: Lint
- on:
- workflow_dispatch:
- schedule:
- - cron: 0 10 * * 0
- jobs:
- lint:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-node@v1
- with:
- node-version: '14.x'
- - name: Run lint script
- run: |
- npm ci
- npm run lint
- - 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
|