This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
fix(deps): update dependency eslint-plugin-markdown to v4 - autoclosed #629
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: CI | |
on: | |
workflow_dispatch: {} | |
pull_request: | |
branches: | |
- main | |
- next | |
- v1 | |
push: | |
branches: | |
- main | |
- next | |
- v1 | |
jobs: | |
check: | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: pnpm/action-setup@v3 | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run lint | |
- run: pnpm run test |