chore(dev-deps): update dependency eslint-plugin-unicorn to v62 #4957
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: Test | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| workflow_call: | |
| jobs: | |
| test_js: | |
| name: "Test - Node: ${{ matrix.node_version }} - TS: ${{ matrix.ts_version }} - OS: ${{ matrix.os }}" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - "ubuntu-latest" | |
| node_version: | |
| - "18.18" | |
| - "20" | |
| - "latest" | |
| ts_version: | |
| # - "next" | |
| - "latest" | |
| # - "4.7.4" | |
| # - "JS" | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.ts_version == 'next' }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/prepare | |
| - name: Setup NodeJs ${{ matrix.node_version }} for testing | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node_version }} | |
| # - name: Add TypeScript "${{ matrix.ts_version }}" for testing | |
| # run: pnpm add -D typescript@"${{ matrix.ts_version }}" | |
| - name: Run Tests | |
| run: pnpm test:js-run | |
| - name: Report coverage | |
| uses: codecov/[email protected] | |
| with: | |
| file: coverage/lcov.info | |
| flags: ${{ matrix.ts_version }} |