mirror of
https://github.com/theoludwig/markdownlint-rule-relative-links.git
synced 2025-11-01 00:49:07 +01:00
33 lines
703 B
YAML
33 lines
703 B
YAML
name: "Test"
|
|
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
pull_request:
|
|
branches: [main, develop]
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
runs-on:
|
|
- "ubuntu-latest"
|
|
- "windows-latest"
|
|
- "macos-latest"
|
|
runs-on: "${{ matrix.runs-on }}"
|
|
steps:
|
|
- uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8" # v5.0.0
|
|
|
|
- name: "Setup Node.js"
|
|
uses: "actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903" # v6.0.0
|
|
with:
|
|
node-version: "lts/*"
|
|
cache: "npm"
|
|
|
|
- name: "Install dependencies"
|
|
run: "npm clean-install"
|
|
|
|
- name: "Test"
|
|
run: "node --run test"
|