mirror of
https://github.com/wassname/chatGPTBox.git
synced 2026-06-27 22:21:40 +08:00
18 lines
304 B
YAML
18 lines
304 B
YAML
name: verify-configs
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 6 * * *"
|
|
|
|
jobs:
|
|
verify_configs:
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
- run: npm ci
|
|
- run: npm run verify
|