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
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on:
pull_request:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10.33.0
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test
- run: pnpm build
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
node_modules/
pnpm-lock.yaml
.agents/
.local/
.DS_Store
Expand All @@ -12,7 +11,7 @@ bench/
/debug/
.partykit/
notes/
scripts/
test/
scripts/*
!scripts/testContracts.mjs
netlify.toml
chrome-trace*.json
15 changes: 0 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2326,21 +2326,6 @@ <h2 id="quake-debug-title" class="quake-bm-label quake-bm-alt">Debug</h2>
/>
</svg>
</a>
<a
class="quake-id-software-link"
rel="noopener noreferrer"
target="_blank"
aria-label="View Quake source on GitHub"
href="https://github.com/id-Software/Quake"
>
<img
class="quake-id-software-logo"
src="/src/assets/id-software-logo.svg"
width="40"
height="40"
alt=""
/>
</a>
<a
class="quake-css-logo"
rel="noopener noreferrer"
Expand Down
8 changes: 1 addition & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,7 @@
"build": "vite build",
"build:full": "pnpm prepare:quake && vite build",
"preview": "vite preview",
"test": "node scripts/testContracts.mjs",
"test:assets": "node scripts/testAssetIntegrity.mjs",
"test:browser": "node scripts/testBrowser.mjs --full",
"test:multiplayer": "node scripts/smokeMultiplayerLoopback.mjs",
"test:multiplayer:party": "node scripts/smokeMultiplayerParty.mjs",
"test:perf": "node scripts/testPerf.mjs",
"test:all": "pnpm build && pnpm test && pnpm test:assets && pnpm test:multiplayer && pnpm test:multiplayer:party && node scripts/testBrowser.mjs"
"test": "node scripts/testContracts.mjs"
},
"dependencies": {
"@layoutit/polycss": "^0.2.6",
Expand Down
Loading
Loading