Skip to content

Commit 5dcf338

Browse files
committed
ci: run Jest tests (includes v3.1 LensEnforcer smoke)
1 parent 2786634 commit 5dcf338

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

  • soulfield-v2-mvp/.github/workflows
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
strategy:
7+
matrix: { node: [20.x, 22.x] }
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with: { node-version: ${{ matrix.node }} }
12+
- run: npm ci || npm i
13+
- run: npm test

0 commit comments

Comments
 (0)