Skip to content

fix(deps): bump semver to ^7.5.2 (CVE-2022-25883) #59

fix(deps): bump semver to ^7.5.2 (CVE-2022-25883)

fix(deps): bump semver to ^7.5.2 (CVE-2022-25883) #59

Workflow file for this run

name: 'Tests: ESLint (9+)'
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:
- 9
babel-eslint:
- 10
- 9
- 8
typescript-eslint:
- 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@${{ matrix.typescript-eslint == 8 && 8.17 || matrix.typescript-eslint }}" "babel-eslint@${{ matrix.babel-eslint }}"
skip-ls-check: true
- run: npx ls-engines
- run: npm run unit-test
- uses: codecov/codecov-action@v3.1.5
node:
name: 'eslint 9+'
needs: [latest]
runs-on: ubuntu-latest
steps:
- run: true