Update TypeScript from ^6.0.3 to ^7.0.2 #80
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '30 2 * * 1' | |
| concurrency: | |
| group: ci-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # Caller must grant the scopes the reusable workflows request (CodeQL needs | |
| # security-events: write, dependency-review needs pull-requests: write). The repo | |
| # default token is read-only, so without this block reusable calls fail at startup. | |
| permissions: | |
| contents: read | |
| actions: read | |
| security-events: write | |
| pull-requests: write | |
| jobs: | |
| ci: | |
| uses: OpenPhysics/Baton/.github/workflows/ci.yml@main | |
| with: | |
| run-tests: true | |
| compliance: | |
| uses: OpenPhysics/Baton/.github/workflows/shared-compliance-check.yml@main | |
| with: | |
| repo-name: WaveComposer | |
| dependency-review: | |
| if: github.event_name == 'pull_request' | |
| uses: OpenPhysics/Baton/.github/workflows/shared-dependency-review.yml@main | |
| codeql: | |
| uses: OpenPhysics/Baton/.github/workflows/shared-codeql.yml@main | |
| with: | |
| source-path: src | |