[Dev Deps] pin markdownlint-cli
to v0.35, because v0.36+ depends on…
#1886
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' | |
on: [pull_request, push] | |
permissions: | |
contents: read | |
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: '>= 6' # preset: '>=4' # see https://github.com/import-js/eslint-plugin-import/issues/2053 | |
latest: | |
needs: [matrix] | |
name: 'majors' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ${{ fromJson(needs.matrix.outputs.latest) }} | |
eslint: | |
- 8 | |
- 7 | |
- 6 | |
- 5 | |
- 4 | |
- 3 | |
- 2 | |
include: | |
- node-version: 'lts/*' | |
eslint: 7 | |
ts-parser: 4 | |
env: | |
TS_PARSER: 4 | |
- node-version: 'lts/*' | |
eslint: 7 | |
ts-parser: 3 | |
env: | |
TS_PARSER: 3 | |
- node-version: 'lts/*' | |
eslint: 7 | |
ts-parser: 2 | |
env: | |
TS_PARSER: 2 | |
exclude: | |
- node-version: 15 | |
eslint: 8 | |
- node-version: 13 | |
eslint: 8 | |
- node-version: 11 | |
eslint: 8 | |
- node-version: 10 | |
eslint: 8 | |
- node-version: 9 | |
eslint: 8 | |
- node-version: 9 | |
eslint: 7 | |
- node-version: 8 | |
eslint: 8 | |
- node-version: 8 | |
eslint: 7 | |
- node-version: 7 | |
eslint: 8 | |
- node-version: 7 | |
eslint: 7 | |
- node-version: 7 | |
eslint: 6 | |
- node-version: 6 | |
eslint: 8 | |
- node-version: 6 | |
eslint: 7 | |
- node-version: 6 | |
eslint: 6 | |
- node-version: 5 | |
eslint: 8 | |
- node-version: 5 | |
eslint: 7 | |
- node-version: 5 | |
eslint: 6 | |
- node-version: 5 | |
eslint: 5 | |
- node-version: 4 | |
eslint: 8 | |
- node-version: 4 | |
eslint: 7 | |
- node-version: 4 | |
eslint: 6 | |
- node-version: 4 | |
eslint: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ljharb/actions/node/install@main | |
continue-on-error: ${{ matrix.eslint == 4 && matrix.node-version == 4 }} | |
name: 'nvm install ${{ matrix.node-version }} && npm install, with eslint ${{ matrix.eslint }}' | |
env: | |
NPM_CONFIG_LEGACY_PEER_DEPS: ${{ matrix.node-version == 11 && false || true }} | |
ESLINT_VERSION: ${{ matrix.eslint }} | |
TRAVIS_NODE_VERSION: ${{ matrix.node-version }} | |
with: | |
node-version: ${{ matrix.node-version }} | |
after_install: npm run copy-metafiles && ./tests/dep-time-travel.sh | |
skip-ls-check: true | |
- run: npm run pretest | |
- run: npm run tests-only | |
- uses: codecov/codecov-action@v3 | |
node: | |
name: 'node 4+' | |
needs: [latest] | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo tests completed' |