Skip to content
Open

aaa #102

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
34 changes: 34 additions & 0 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: PR Validation

on:
pull_request:
branches: [ main, master ]
push:
branches: [ main, master ]

jobs:
test-and-lint:
runs-on: ubuntu-latest

steps:
# Step 1: Check out your code so the runner can see it
- name: Checkout Code
uses: actions/checkout@v4

# Step 2: Set up your environment (Example: Node.js)
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

# Step 3: Install dependencies
- name: Install Dependencies
run: npm install

# Step 4: Run Linter (Checks code style)
- name: Run Linter
run: npm run lint

# Step 5: Run Tests (The most important part)
- name: Run Tests
run: npm test
21 changes: 0 additions & 21 deletions Layerfile

This file was deleted.

7 changes: 5 additions & 2 deletions services/web/src/views/main/main.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

html, body {
padding: 0;
margin: 0;
Expand Down Expand Up @@ -26,7 +27,7 @@ body {
}

.mainBody .sidebar, .mainBody .sidebar .btn {
color: #80858d;
color: #85808d;
}

header {
Expand Down Expand Up @@ -88,4 +89,6 @@ header {
background: #fff;
border-radius: 5px;
border: 1px solid #000;
}
}

/*update 1*/