Skip to content
Merged

Dev #62

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CI integrity checks

on:
pull_request:
branches:
- main
- dev

jobs:
Backend-checks:
name: Backend integrity checks
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21'

- name: Verify Backend Build
run: |
cd Backend
go build -v ./...

Frontend-checks:
name: Frontend integrity checks
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Verify Frontend Build
run: |
cd Frontend/project-CL
npm install
npm run build
Loading