2025-01-20 22:48:39 -08:00
|
|
|
name: Check syntax
|
|
|
|
on: [push,workflow_dispatch]
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: alpine
|
|
|
|
steps:
|
|
|
|
- name: Setup Alpine
|
|
|
|
uses: https://git.swee.codes/swee/setup-alpine@main
|
|
|
|
with:
|
|
|
|
additional: python3
|
2024-12-18 16:25:17 -08:00
|
|
|
- uses: actions/checkout@v4
|
2025-01-20 22:48:39 -08:00
|
|
|
- name: Install JSHint
|
2025-01-18 18:02:19 -08:00
|
|
|
run: npm --global install jshint
|
2025-01-18 17:57:09 -08:00
|
|
|
- run: python3 -m py_compile sweebot.py
|
2024-12-18 16:29:57 -08:00
|
|
|
- run: jshint script.js
|