Skip to content
Merged
Show file tree
Hide file tree
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
52 changes: 52 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: CI

on:
push:
branches: [main]
pull_request:

jobs:
backend:
name: Backend (test & build)
runs-on: ubuntu-latest
defaults:
run:
working-directory: backend
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: backend/package-lock.json

- name: Install dependencies
run: npm ci

- name: Test
run: npm test

- name: Build
run: npm run build

frontend:
name: Frontend (build)
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
cache-dependency-path: frontend/package-lock.json

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build
1 change: 0 additions & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"migration:generate": "npx typeorm-ts-node-commonjs migration:generate -d src/data-source.ts",
"migration:run": "npx typeorm-ts-node-commonjs migration:run -d src/data-source.ts",
"migration:revert": "npx typeorm-ts-node-commonjs migration:revert -d src/data-source.ts"
Expand Down
25 changes: 0 additions & 25 deletions backend/test/app.e2e-spec.ts

This file was deleted.

9 changes: 0 additions & 9 deletions backend/test/jest-e2e.json

This file was deleted.

8 changes: 7 additions & 1 deletion frontend/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,13 @@
];

// Wall of Fame
const wallOfFameProjects = [
const wallOfFameProjects: {
title: string;
author: string;
description: string;
link: string;
tag?: string;
}[] = [
{
title: 'Seaward',
author: 'moaaz',
Expand Down
Loading