Bump actions/checkout from 5 to 6 #169
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 Continuous integration tests | |
| on: [push, pull_request] | |
| concurrency: | |
| group: build-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| CI: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./typescript | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| cache-dependency-path: typescript/package-lock.json | |
| - run: node --version | |
| - run: npm install | |
| - run: npm test | |
| - name: Upload coverage to Codecov | |
| if: github.repository_owner == 'galaxyproject' | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| directory: ./typescript | |
| fail_ci_if_error: true | |
| flags: unittests | |
| token: ${{ secrets.CODECOV_TOKEN }} |