Todone #105
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: Todone | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "32 18 * * *" # Every day at a chosen random time | |
| push: | |
| branches: | |
| - main | |
| env: | |
| # *TODO https://github.com/actions/runner/issues/3600 | |
| # Remove when GitHub Actions supports Node 24 without a workaround | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| build-run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: jdx/mise-action@v2 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| cache: "yarn" | |
| - run: yarn install --immutable | |
| - name: Build action | |
| run: yarn run nx run-many -p github-action -t build,check | |
| - name: Run todone | |
| uses: ./packages/github-action | |
| with: | |
| globs: | | |
| **/* | |
| !.nx/**/* | |
| !node_modules/**/* | |
| !**/dist/**/* | |
| keyword: "*TODO" |