Skip to content

Commit 4438ed7

Browse files
jacobloganJacob Logan
authored andcommitted
add github workflow to run the link tag check script on each PR (#5022)
* add github workflow to run the link tag check script on each PR * correct script path * update workflow job name * update workflow name Co-authored-by: Jacob Logan <[email protected]>
1 parent 51c1736 commit 4438ed7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/tagcheck.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: LinkTagCheck
2+
on:
3+
pull_request:
4+
types: [opened, synchronize]
5+
permissions:
6+
contents: read
7+
jobs:
8+
LinkTagCheck:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout repository
12+
uses: actions/checkout@v3
13+
- name: Setup Node.js 14.x
14+
uses: actions/setup-node@main
15+
with:
16+
node-version: 14.x
17+
- name: Install Dependencies
18+
run: yarn
19+
- name: Run Link Tag Check
20+
run: node tasks/check-link-tags.mjs

0 commit comments

Comments
 (0)