Skip to content

Updated backedn workflow #24

Updated backedn workflow

Updated backedn workflow #24

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
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 go
uses: actions/setup-go@v3
with:
go-version: '1.23'
- name: Install dependencies
run: |
cd backend/
cd api-gateway/
go mod download
cd ../
cd code-execution-service/
go mod download