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
40 changes: 37 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Run public NPM packaging lint checks
run: npm run lint:package -- --filter ${{ matrix.pkg }}

e2e-tests:
e2e-next-sandbox:
runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
path: e2e/next-sandbox/playwright-report
retention-days: 14

e2e-ai-tests:
e2e-next-ai-sandbox:
runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -165,7 +165,41 @@ jobs:
path: e2e/next-ai-kitchen-sink/playwright-report
retention-days: 14

e2e-client-specs-tests:
e2e-node-sandbox:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [22.4.1]

timeout-minutes: 60

env:
LIVEBLOCKS_SECRET_KEY: ${{ secrets.E2E_TEST_LIVEBLOCKS_SECRET_KEY }}
PUBLIC_LIVEBLOCKS_PUBLIC_KEY:
${{ secrets.E2E_TEST_LIVEBLOCKS_PUBLIC_KEY }}
NEXT_PUBLIC_LIVEBLOCKS_PUBLIC_KEY:
${{ secrets.E2E_TEST_LIVEBLOCKS_PUBLIC_KEY }}
NEXT_PUBLIC_LIVEBLOCKS_BASE_URL: ${{ vars.E2E_TEST_LIVEBLOCKS_BASE_URL }}

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

- name: Use Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: "**/package-lock.json"

- name: Install dependencies
run: npm install

- name: Run node-sandbox tests
run: npm run test -- --filter node-sandbox

e2e-client-specs:
runs-on: ubuntu-latest

strategy:
Expand Down
1 change: 1 addition & 0 deletions e2e/node-sandbox/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.env
67 changes: 0 additions & 67 deletions e2e/node-sandbox/index.test.js

This file was deleted.

Loading
Loading