Skip to content

Commit 198479c

Browse files
kvzclaude
andauthored
ci: add verification step to CI workflow (#497)
* ci: add verification step to CI workflow Runs `yarn verify` in CI to catch regressions in verified functions. Only functions with `verified: X.Y` header are tested, ensuring CI doesn't fail on unverified functions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * ci: use Node 22.x for TypeScript strip-types support --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 21f8abb commit 198479c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 1
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 20.x
19+
node-version: 22.x
2020
registry-url: 'https://registry.npmjs.org'
2121
- name: Get yarn cache directory path
2222
id: yarn-cache-dir-path
@@ -44,6 +44,9 @@ jobs:
4444
- name: Test
4545
run: |
4646
corepack yarn test
47+
- name: Verify against native runtimes
48+
run: |
49+
corepack yarn verify
4750
- name: Release
4851
if: startsWith(github.ref, 'refs/tags/')
4952
run: |

0 commit comments

Comments
 (0)