blob: a3236eaa1b5a82b8d20a088061be043e2ce72e79 [file] [log] [blame]
name: Check Links
on:
schedule:
- cron: '0 10,22 * * *'
repository_dispatch:
types: check-links
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
registry-url: https://registry.npmjs.org/
- name: Check links
run: |
npm i
node checkLinks.js
working-directory: .scripts