This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
on-push #196
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
name: on-push | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
run-todos: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- run: yarn --frozen-lockfile | |
- run: yarn run build | |
- run: yarn run todos | |
- uses: EndBug/add-and-commit@v7 | |
with: | |
add: 'langs/*/README.md' | |
message: 'bot: update language todos' |