Skip to content

Commit

Permalink
Create PullRequestValidator action
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinPihony authored Aug 28, 2024
1 parent fb706db commit 3eb2db6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/PullRequestValidator
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Pull Request Validator
on:
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '19'
- name: Install Antora and Lunr
run: npm i antora @antora/lunr-extension
- name: Run Antora
run: npx antora antora-playbook.yml

0 comments on commit 3eb2db6

Please sign in to comment.