[Fix] boolean-prop-naming
: literal TSIntersectionType not allow error fix
#288
Workflow file for this run
This file contains 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: 'Tests: node.js (18+)' | |
on: [pull_request, push] | |
jobs: | |
matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
latest: ${{ steps.set-matrix.outputs.requireds }} | |
minors: ${{ steps.set-matrix.outputs.optionals }} | |
steps: | |
- uses: ljharb/actions/node/matrix@main | |
id: set-matrix | |
with: | |
versionsAsRoot: true | |
type: majors | |
preset: '>=18' | |
latest: | |
needs: [matrix] | |
name: 'latest majors' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ${{ fromJson(needs.matrix.outputs.latest) }} | |
eslint: | |
- 8 | |
- 7 | |
- 6 | |
- 5 | |
- 4 | |
- 4.14 # last version without messageId | |
- 3 | |
babel-eslint: | |
- 10 | |
- 9 | |
- 8 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ljharb/actions/node/install@main | |
name: 'nvm install ${{ matrix.node-version }} && npm install' | |
with: | |
node-version: ${{ matrix.node-version }} | |
after_install: | | |
npm install --no-save "eslint@${{ matrix.eslint }}" "@typescript-eslint/parser@5" "babel-eslint@${{ matrix.babel-eslint }}" | |
env: | |
NPM_CONFIG_LEGACY_PEER_DEPS: true | |
- run: npx ls-engines | |
- run: npm run unit-test | |
- uses: codecov/codecov-action@v3.1.5 | |
node: | |
name: 'node 18+' | |
needs: [latest] | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo tests completed' |