mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-25 10:20:13 +01:00
31 lines
655 B
YAML
31 lines
655 B
YAML
name: TestRepos
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
node-version: [16.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- name: Install Dependencies
|
|
run: npm install --no-package-lock
|
|
- name: Clone Test Repos
|
|
run: npm run clone-test-repos-large
|
|
- name: Lint Test Repos
|
|
run: npm run lint-test-repos
|
|
- name: Run Extra Tests
|
|
run: npm run test-extra
|