Skip to content
Open

Main #21

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
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
30 changes: 30 additions & 0 deletions .github/workflows/accessibility.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Accessibility Check

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

jobs:
pa11y:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: browser-actions/setup-chrome@latest

- name: Install dependencies
run: |
sudo npm install -g http-server pa11y-ci

- name: Start server
run: |
http-server -p 8080 &
sleep 5

- name: Run accessibility tests
run: |
pa11y-ci http://localhost:8080/index.html \
http://localhost:8080/crucible-exchange.html \
http://localhost:8080/proclamation-pillar.html
20 changes: 20 additions & 0 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Super Linter

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

jobs:
super-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: github/super-linter@v4
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_HTML: true
VALIDATE_CSS: true
VALIDATE_JAVASCRIPT_ES: true
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Dependencies
node_modules/
npm-debug.log*

# Build artifacts
dist/
build/

# Server logs
*.log

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# IDE files
.vscode/
.idea/
*.swp
*.swo

# Temporary files
*.tmp
*~
Binary file added 1Neuro-Nexus Master Setup Sheet (Updated).docx
Binary file not shown.
16 changes: 0 additions & 16 deletions Accessibility Check

This file was deleted.

20 changes: 20 additions & 0 deletions HTML
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexus Singularity</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to Nexus Singularity</h1>
</header>
<main>
<p>This is a dynamic website powered by Node.js and Express.</p>
<button id="fetchData">Fetch Data</button>
<div id="apiResponse"></div>
</main>
<script src="script.js"></script>
</body>
</html>
Loading
Loading