Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,19 @@ jobs:
print('transformers', transformers.__version__); \
print('prometheus_client', __import__('importlib.metadata', fromlist=['version']).version('prometheus_client'))"

- name: Set up Node.js for proof observatory checks
uses: actions/setup-node@v4
with:
node-version: "20"
cache: npm
cache-dependency-path: deploy/cloudflare-worker/package-lock.json

- name: Validate proof observatory Worker bundle
working-directory: deploy/cloudflare-worker
run: |
npm ci
npm run check

- name: Run platform-neutral test suite with 100% coverage
env:
# sdks/python is the on-tree location of the Python SDK
Expand Down
Loading
Loading