chore(deps): update dependency ava to v6 - autoclosed #415
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: Build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest, windows-latest] | |
| node-version: ['*'] | |
| fail-fast: false | |
| steps: | |
| - name: Git checkout | |
| uses: actions/checkout@v3 | |
| - name: Using Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| check-latest: true | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Linting | |
| run: npm run format:ci | |
| - name: Tests | |
| run: npm run test:ci | |
| - name: Get test coverage flags | |
| id: test-coverage-flags | |
| run: |- | |
| os=${{ matrix.os }} | |
| node=${{ matrix.node-version }} | |
| echo "::set-output name=os::${os/-latest/}" | |
| echo "::set-output name=node::node_${node//[.*]/}" | |
| shell: bash | |
| - uses: codecov/codecov-action@v3 | |
| with: | |
| file: coverage/coverage-final.json | |
| flags: ${{ steps.test-coverage-flags.outputs.os }},${{ steps.test-coverage-flags.outputs.node }} |