ci: remove markdown-link-check configuration (#1300) #1908
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-basic-pnpm | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
basic-pnpm: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-24.04, windows-2022, macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# See https://github.com/pnpm/action-setup | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
# See https://github.com/actions/setup-node | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: 'pnpm' | |
cache-dependency-path: examples/basic-pnpm/pnpm-lock.yaml | |
- name: Cypress tests | |
# if you copy this workflow to another repository | |
# take the next line as replacement for ./ | |
# uses: cypress-io/github-action@v6 | |
uses: ./ | |
with: | |
working-directory: examples/basic-pnpm | |
# print information about detected browsers, etc | |
# see https://on.cypress.io/command-line#cypress-info | |
build: pnpm exec cypress info |