Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .coderabbit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ reviews:
unit_tests:
enabled: false
chat:
art: false
art: false
17 changes: 0 additions & 17 deletions .editorconfig

This file was deleted.

1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

6 changes: 0 additions & 6 deletions .github/ISSUE_TEMPLATE/doc_request.md

This file was deleted.

5 changes: 0 additions & 5 deletions .github/ISSUE_TEMPLATE/website_request.md

This file was deleted.

51 changes: 0 additions & 51 deletions .github/actions/create-or-update-comment/action.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/dependabot.yml

This file was deleted.

11 changes: 0 additions & 11 deletions .github/pre-commit

This file was deleted.

123 changes: 0 additions & 123 deletions .github/workflows/check-all-links.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/workflows/crawler.yaml

This file was deleted.

47 changes: 47 additions & 0 deletions .github/workflows/docs-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Docs Tests

on:
push:
pull_request:

jobs:
test:
name: Playwright Tests (Docs)
timeout-minutes: 60
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"

- name: Install dependencies
run: pnpm install

- name: Install Playwright Browsers
working-directory: apps/docs
run: npx playwright install --with-deps

- name: Build docs app
run: pnpm --filter=docs run build

- name: Run Playwright tests
run: pnpm --filter=docs exec playwright test
env:
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}

- name: Upload Playwright Report
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report-docs
path: apps/docs/playwright-report/
retention-days: 30
47 changes: 47 additions & 0 deletions .github/workflows/eclipse-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Eclipse Tests

on:
push:
pull_request:

jobs:
test:
name: Playwright Tests (Eclipse)
timeout-minutes: 60
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"

- name: Install dependencies
run: pnpm install

- name: Install Playwright Browsers
working-directory: apps/eclipse
run: npx playwright install --with-deps

- name: Build eclipse app
run: pnpm --filter=eclipse run build

- name: Run Playwright tests
run: pnpm --filter=eclipse exec playwright test
env:
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}

- name: Upload Playwright Report
uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report-eclipse
path: apps/eclipse/playwright-report/
retention-days: 30
Loading
Loading