Bump the github-actions group across 1 directory with 3 updates #62
Workflow file for this run
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: check-ts | |
| on: | |
| pull_request: | |
| permissions: write-all | |
| jobs: | |
| ts: | |
| if: false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Get diff lines | |
| id: diff | |
| uses: Equip-Collaboration/[email protected] | |
| with: | |
| include: '["\\.ts$"]' | |
| - name: Detecting files changed | |
| id: files | |
| uses: umani/[email protected] | |
| with: | |
| repo-token: ${{ github.token }} | |
| pattern: '^.*\.ts$' | |
| - name: List files changed (you can remove this step, for monitoring only) | |
| run: | | |
| echo 'Files modified: ${{steps.files.outputs.files_updated}}' | |
| echo 'Files added: ${{steps.files.outputs.files_created}}' | |
| echo 'Files removed: ${{steps.files.outputs.files_deleted}}' | |
| - uses: Arhia/[email protected] | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| use-check: true | |
| check-fail-mode: added | |
| files-changed: ${{steps.files.outputs.files_updated}} | |
| files-added: ${{steps.files.outputs.files_created}} | |
| files-deleted: ${{steps.files.outputs.files_deleted}} | |
| line-numbers: ${{steps.diff.outputs.lineNumbers}} | |
| output-behaviour: both | |
| comment-behaviour: new | |
| ts-config-path: "./sphinx_js/js/tsconfig.json" |