Drop last modification validator #27
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
name: Drop last modification validator | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 14 * * 1" | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.9.0 | |
- name: Run script to check LastModified | |
run: node ./.github/date-validator/validator.js |