[codex] re-enable Loop Library voting #154
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |