File tree Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Run E2E Tests
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+ branches :
9+ - main
10+ workflow_dispatch :
11+
12+ jobs :
13+ e2e-tests :
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - name : Checkout Repository 📝
18+ uses : actions/checkout@v4
19+
20+ - name : Setup Node.js
21+ uses : actions/setup-node@v4
22+ with :
23+ node-version : " 20.x"
24+ cache : " yarn"
25+
26+ - name : Install Dependencies
27+ run : yarn install --frozen-lockfile
28+
29+ - name : Set Up Starship Infrastructure
30+ id : starship-infra
31+ uses :
cosmology-tech/[email protected] 32+ with :
33+ config : configs/ci.yaml
34+ cli-version : 2.10.1
35+
36+ - name : Run E2E Tests
37+ run : yarn test
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import path from "path";
66import fs from 'fs' ;
77import { getSigningJsdClient , jsd } from 'jsdjs'
88import { useChain , generateMnemonic } from 'starshipjs' ;
9- import { sleep } from '../src/ utils' ;
9+ import { sleep } from '../test- utils/sleep ' ;
1010import './setup.test' ;
1111
1212describe ( 'JSD tests' , ( ) => {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments