File tree Expand file tree Collapse file tree 1 file changed +0
-35
lines changed
Expand file tree Collapse file tree 1 file changed +0
-35
lines changed Original file line number Diff line number Diff line change 66 pull_request :
77 branches : [main, master]
88
9- jobs :
10- backend :
11- name : Backend CI
12- runs-on : ubuntu-latest
13- defaults :
14- run :
15- working-directory : backend
16- steps :
17- - uses : actions/checkout@v4
18- - name : Use Node.js
19- uses : actions/setup-node@v4
20- with :
21- node-version : ' 20'
22- cache : ' npm'
23- cache-dependency-path : backend/package-lock.json
24- - run : npm install
25- - run : npx prisma generate
26- - run : npm run build
27- - run : npm test
28-
299 frontend :
3010 name : Frontend CI
3111 runs-on : ubuntu-latest
4323 - run : npm install
4424 - run : npm run build
4525 - run : npm run lint
46-
47- contracts :
48- name : Contracts CI
49- runs-on : ubuntu-latest
50- defaults :
51- run :
52- working-directory : contracts
53- steps :
54- - uses : actions/checkout@v4
55- - name : Install Rust
56- uses : dtolnay/rust-toolchain@stable
57- with :
58- targets : wasm32-unknown-unknown
59- - run : cargo update -p soroban-sdk
60- - run : cargo build --target wasm32-unknown-unknown
You can’t perform that action at this time.
0 commit comments