-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
actions: add mdv to replace Travis (#2139)
- Loading branch information
1 parent
2d6a180
commit 149e6be
Showing
3 changed files
with
28 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: validate-markdown | ||
|
||
# Author: @MikeRalphson | ||
# Issue: https://github.com/OAI/OpenAPI-Specification/issues/2130 | ||
|
||
# | ||
# This workflow validates files in the versions directory matching 3.*.md | ||
# Versions before 3.0 are not validated, as they contain linking errors | ||
# where it is not currently planned to go back and fix them | ||
# | ||
|
||
# run this on push to any branch and creation of pull-requests | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
mdv: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 # checkout repo content | ||
- uses: actions/setup-node@v1 # setup Node.js | ||
with: | ||
node-version: '12.x' | ||
- name: Validate markdown | ||
run: npx mdv versions/3.*.md | ||
|
This file was deleted.
Oops, something went wrong.
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