ci: remove markdown-link-check configuration (#1300) #2784
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: example-node-versions | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
cypress-run: | |
runs-on: ubuntu-24.04 | |
# let's make sure Cypress works on several versions of Node | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [18, 20, 22, 23] | |
name: Cypress E2E on Node v${{ matrix.node }} | |
steps: | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: node -v | |
- run: npm -v | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: ./ | |
with: | |
working-directory: examples/node-versions |