mirror of
https://github.com/theoludwig/markdownlint-rule-relative-links.git
synced 2025-01-03 18:40:46 +01:00
Théo LUDWIG
aa24db4fac
Fixes #10 BREAKING CHANGE: This package is now pure ESM BREAKING CHANGE: minimum supported Node.js >= 22.0.0
26 lines
457 B
YAML
26 lines
457 B
YAML
name: "Test"
|
|
|
|
on:
|
|
push:
|
|
branches: [develop]
|
|
pull_request:
|
|
branches: [main, develop]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- uses: "actions/checkout@v4.2.2"
|
|
|
|
- name: "Setup Node.js"
|
|
uses: "actions/setup-node@v4.1.0"
|
|
with:
|
|
node-version: "lts/*"
|
|
cache: "npm"
|
|
|
|
- name: "Install dependencies"
|
|
run: "npm clean-install"
|
|
|
|
- name: "Test"
|
|
run: "node --run test"
|