Bump scalacenter/sbt-dependency-submission from 24be7f397c9841c8c8e5d15edec07818beb90a50 to 713d4158768799bcf28b091a264eb87764d88154 #18443
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: typescript | |
| on: | |
| pull_request: | |
| push: # Do not rely on `push` for PR CI - see https://github.com/guardian/mobile-apps-api/pull/2760 | |
| branches: | |
| - main # Optimal for GHA workflow caching - see https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#restrictions-for-accessing-a-cache | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| jobs: | |
| typescript: | |
| name: Typescript | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: yarn | |
| - name: Install | |
| run: yarn | |
| - name: Check typescript | |
| run: yarn tsc |