Skip to content

Todone

Todone #108

Workflow file for this run

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"