chore(deps-dev): bump @types/node from 25.6.0 to 25.9.1 #296
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: 'Run Tests' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| node-version: [16.x] | |
| steps: | |
| - name: 'Checkout Git repository with history for all branches and tags' | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: 'Use Node.js ${{ matrix.node-version }}' | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: 'Install, lint, and test' | |
| run: | | |
| yarn install --frozen-lockfile | |
| yarn lint | |
| yarn test | |
| if: | | |
| contains(github.event.commits[0].message, '[skip ci]') == false && | |
| contains(github.event.commits[0].message, '[ci skip]') == false | |
| - name: 'Upload coverage reports to Codecov' | |
| uses: codecov/codecov-action@v6.0.1 | |
| with: | |
| fail_ci_if_error: false | |
| files: ./coverage/lcov.info | |
| flags: unittests | |
| verbose: false | |
| yml: ./codecov.yml |