File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Memtest
2+ on :
3+ push :
4+ branches :
5+ - main
6+ pull_request :
7+
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.ref }}
10+ cancel-in-progress : true
11+
12+ env :
13+ NODE_NO_WARNINGS : 1
14+
15+ jobs :
16+ memtest :
17+ strategy :
18+ matrix :
19+ e2e_runner : [node, bun]
20+ name : ${{matrix.e2e_runner}}
21+ runs-on : ubuntu-latest
22+ steps :
23+ - name : Checkout
24+ uses : actions/checkout@v4
25+ - name : Set up env
26+ uses : the-guild-org/shared-config/setup@v1
27+ with :
28+ node-version-file : .node-version
29+ - name : Test
30+ run : yarn test:mem
31+ env :
32+ E2E_GATEWAY_RUNNER : ${{matrix.e2e_runner}}
Original file line number Diff line number Diff line change 2424 "test:bun" : " bun test --bail" ,
2525 "test:e2e" : " vitest --project e2e" ,
2626 "test:leaks" : " cross-env \" LEAK_TEST=1\" jest --detectOpenHandles --detectLeaks" ,
27- "test:memtest " : " vitest --project memtest"
27+ "test:mem " : " vitest --project memtest"
2828 },
2929 "devDependencies" : {
3030 "@babel/core" : " 7.26.7" ,
You can’t perform that action at this time.
0 commit comments