Add .forgejo/workflows/syntax-check.yml
Some checks failed
Check syntax / check (push) Failing after 6s
Some checks failed
Check syntax / check (push) Failing after 6s
This commit is contained in:
parent
c697307e2a
commit
25334b178e
1 changed files with 9 additions and 0 deletions
9
.forgejo/workflows/syntax-check.yml
Normal file
9
.forgejo/workflows/syntax-check.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
name: Check syntax
|
||||
on: [push]
|
||||
jobs:
|
||||
check:
|
||||
runs-on: debian-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: acorn script.user.js
|
||||
- run: jshint script.user.js
|
Loading…
Reference in a new issue