-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 799 Bytes
/
todone.yaml
File metadata and controls
37 lines (31 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Todone
on:
workflow_dispatch:
push:
branches:
- main
env:
# *TODO https://github.com/actions/runner/pull/3940
# 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"