Skip to content

Commit d81f481

Browse files
author
Your Name
committed
chore: simplify CI by removing backend and contract jobs
1 parent 1966ca5 commit d81f481

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,6 @@ on:
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
@@ -43,18 +23,3 @@ jobs:
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

0 commit comments

Comments
 (0)