Skip to content

Commit

Permalink
Updated backedn workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
slashexx committed Nov 4, 2024
1 parent a5e5472 commit d0c8df4
Showing 1 changed file with 37 additions and 14 deletions.
51 changes: 37 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,47 @@ on:
- main

jobs:
test:
runs-on: ubuntu-latest

frontend:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '20.15.1'

- name: Install dependencies
run: |
cd frontend/
npm install --legacy-peer-deps
- name: Run tests
run: |
cd frontend/
npm test
backend:
runs-on: ubuntu-latest
needs: frontend

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: '20.15.1'

- name: Set up go
uses: actions/setup-go@v3
with:
go-version: '1.23'

- name: Install dependencies
run: |
cd frontend/
npm install --legacy-peer-deps
- name: Run tests
run: |
cd frontend/
npm test
cd backend/
cd api-gateway/
go mod download
cd ../
cd code-execution-service/
go mod download

0 comments on commit d0c8df4

Please sign in to comment.