File tree Expand file tree Collapse file tree 4 files changed +45
-0
lines changed Expand file tree Collapse file tree 4 files changed +45
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Run TODO Watcher
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ branches : [ main ]
8+
9+ jobs :
10+ todo-watcher :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v3
14+ - name : Setup Node.js
15+ uses : actions/setup-node@v3
16+ with :
17+ node-version : ' 20'
18+ - run : npm install
19+ - run : npm run build
20+ - uses : ./ # Usa esta Action localmente
Original file line number Diff line number Diff line change 1+ node_modules /
2+ dist /
3+ .env
Original file line number Diff line number Diff line change 1+ // Ponto de entrada da Action
2+
3+ console . log ( 'TODO Watcher iniciado' ) ;
Original file line number Diff line number Diff line change 1+ {
2+ "compilerOptions" : {
3+ "target" : " ES2020" ,
4+ "module" : " CommonJS" ,
5+ "declaration" : true ,
6+ "outDir" : " ./dist" ,
7+ "strict" : true ,
8+ "esModuleInterop" : true ,
9+ "forceConsistentCasingInFileNames" : true ,
10+ "skipLibCheck" : true
11+ },
12+ "include" : [
13+ " src/**/*.ts"
14+ ],
15+ "exclude" : [
16+ " node_modules" ,
17+ " dist"
18+ ]
19+ }
You can’t perform that action at this time.
0 commit comments