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
4 changes: 2 additions & 2 deletions .github/workflows/ci-monday-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
- name: Build e2e matrix
id: matrix
run: |
# Get all projects with an e2e target
PROJECTS=$(pnpm nx show projects --with-target e2e 2>/dev/null | sort)
# Get all projects with an e2e target, excluding desktop-only apps
PROJECTS=$(pnpm nx show projects --with-target e2e 2>/dev/null | grep -v '^q$' | sort)

if [ -z "$PROJECTS" ]; then
echo "No e2e projects found"
Expand Down
19 changes: 18 additions & 1 deletion .github/workflows/ci-weekly-nx-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ jobs:
id: nx-report
run: |
set -euo pipefail
pnpm nx report > /tmp/nx-report-raw.txt 2>&1 || true
# Capture report and strip ANSI color/bold codes that nx emits
pnpm nx report 2>&1 | sed 's/\x1b\[[0-9;]*m//g' > /tmp/nx-report-raw.txt || true
echo "report_date=$(date -u +%Y-%m-%d)" >> "$GITHUB_OUTPUT"
echo "report_timestamp=$(date -u +%Y-%m-%dT%H:%M:%SZ)" >> "$GITHUB_OUTPUT"

Expand Down Expand Up @@ -275,6 +276,22 @@ jobs:
echo "pushed=true" >> "$GITHUB_OUTPUT"
echo "branch_name=$BRANCH_NAME" >> "$GITHUB_OUTPUT"

- name: Install GitHub CLI
if: steps.commit.outputs.pushed == 'true'
run: |
set -euo pipefail
if command -v gh &>/dev/null; then
echo "gh already installed: $(gh --version | head -1)"
else
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \
| sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" \
| sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
sudo apt-get update -qq
sudo apt-get install -y -qq gh
echo "gh installed: $(gh --version | head -1)"
fi

- name: Create PR
if: steps.commit.outputs.pushed == 'true'
env:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/docker-test-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,19 @@ jobs:
- name: Install pnpm Dependencies
run: pnpm install

- name: Setup Python + uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: false

- name: Install Playwright Browsers
if: ${{ inputs.install_playwright }}
run: pnpm exec playwright install --with-deps chromium

- name: Nx e2e ${{ inputs.project }}
env:
BUILDKIT_PROGRESS: plain
INPUT_GITHUB_TOKEN: ${{ github.token }}
run: pnpm nx e2e ${{ inputs.project }} --configuration=ci --no-cloud --output-style=stream

- name: Mark test passed
Expand Down
24 changes: 23 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ members = [
'packages/rust/bevy/bevy_player',
'packages/rust/bevy/bevy_cam',
'packages/rust/bevy/bevy_kbve_net',
'packages/rust/bevy/bevy_items',
'packages/rust/bevy/bevy_npc',
]

[profile.dev]
Expand Down
3 changes: 3 additions & 0 deletions apps/cryptothrone/axum-cryptothrone/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ COPY packages/npm/astro/ packages/npm/astro/
COPY packages/npm/droid/ packages/npm/droid/
COPY packages/npm/laser/ packages/npm/laser/

# Copy generated schemas (content collections may import these)
COPY packages/data/codegen/generated/ packages/data/codegen/generated/

# Copy astro-cryptothrone source
COPY apps/cryptothrone/astro-cryptothrone/ apps/cryptothrone/astro-cryptothrone/

Expand Down
3 changes: 3 additions & 0 deletions apps/discordsh/axum-discordsh/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ RUN pnpm install --frozen-lockfile
COPY packages/npm/astro/ packages/npm/astro/
COPY packages/npm/droid/ packages/npm/droid/

# Copy generated schemas (content collections may import these)
COPY packages/data/codegen/generated/ packages/data/codegen/generated/

# Copy astro-discordsh source
COPY apps/discordsh/astro-discordsh/ apps/discordsh/astro-discordsh/

Expand Down
3 changes: 3 additions & 0 deletions apps/herbmail/axum-herbmail/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ RUN pnpm install --frozen-lockfile
COPY packages/npm/astro/ packages/npm/astro/
COPY packages/npm/droid/ packages/npm/droid/

# Copy generated schemas (content collections may import these)
COPY packages/data/codegen/generated/ packages/data/codegen/generated/

# Copy astro-herbmail source
COPY apps/herbmail/astro-herbmail/ apps/herbmail/astro-herbmail/

Expand Down
3 changes: 3 additions & 0 deletions apps/irc/irc-gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ RUN pnpm install --frozen-lockfile
COPY packages/npm/astro/ packages/npm/astro/
COPY packages/npm/droid/ packages/npm/droid/

# Copy generated schemas (content collections may import these)
COPY packages/data/codegen/generated/ packages/data/codegen/generated/

# Copy astro-irc source
COPY apps/irc/astro-irc/ apps/irc/astro-irc/

Expand Down
2 changes: 1 addition & 1 deletion apps/kbve/astro-kbve-e2e/e2e/content.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { test, expect } from '@playwright/test';
test.describe('content rendering', () => {
test('guide page renders markdown content', async ({ page }) => {
await page.goto('/guides/getting-started/');
const heading = page.locator('h1');
const heading = page.locator('h1').first();
await expect(heading).toBeVisible();
await expect(heading).toContainText('Getting Started');
});
Expand Down
6 changes: 6 additions & 0 deletions apps/kbve/astro-kbve-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@
"e2e": {
"executor": "@nx/playwright:playwright",
"cache": false,
"dependsOn": ["astro-kbve:build"],
"options": {
"config": "apps/kbve/astro-kbve-e2e/playwright.config.ts"
},
"configurations": {
"ci": {
"config": "apps/kbve/astro-kbve-e2e/playwright.preview.config.ts"
}
}
},
"e2e:preview": {
Expand Down
Loading
Loading