diff --git a/.github/workflows/tagcheck.yml b/.github/workflows/tagcheck.yml new file mode 100644 index 00000000000..2ee179c4b41 --- /dev/null +++ b/.github/workflows/tagcheck.yml @@ -0,0 +1,20 @@ +name: LinkTagCheck +on: + pull_request: + types: [opened, synchronize] +permissions: + contents: read +jobs: + LinkTagCheck: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + - name: Setup Node.js 14.x + uses: actions/setup-node@main + with: + node-version: 14.x + - name: Install Dependencies + run: yarn + - name: Run Link Tag Check + run: node tasks/check-link-tags.mjs