Skip to content

[codex] re-enable Loop Library voting #154

[codex] re-enable Loop Library voting

[codex] re-enable Loop Library voting #154

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: Verify
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: worker/package-lock.json
- name: Install Worker dependencies
run: npm ci --prefix worker
- name: Validate site and skill sources
run: |
node --check site/script.js
node scripts/check.mjs
python3 -m json.tool site/.herenow/data.json >/dev/null
python3 -m json.tool site/.herenow/proxy.json >/dev/null
python3 -m json.tool scripts/seo-geo-query-benchmark.json >/dev/null
git diff --check
- name: Test form Worker
run: npm --prefix worker run check