Skip to content

Schedule workflows #301

Schedule workflows

Schedule workflows #301

Workflow file for this run

---
name: "JSLint"
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:
permissions: {}
jobs:
check:
name: Check with JSLint
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Install JSLint
run: sudo npm install -g jslint
- name: Run JSLint
run: jslint --browser javascripts/*.js