Skip to content

Commit

Permalink
upgrade to actions/upload-artifact v4 (jupyterlab#992)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlqqq authored and Marchlak committed Oct 28, 2024
1 parent 68557e7 commit 14c4cdd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: E2E Tests

# suppress warning raised by https://github.com/jupyter/jupyter_core/pull/292
env:
JUPYTER_PLATFORM_DIRS: '1'
JUPYTER_PLATFORM_DIRS: "1"

on:
push:
branches: main
pull_request:
branches: '*'
branches: "*"

jobs:
e2e-tests:
Expand Down Expand Up @@ -41,17 +41,17 @@ jobs:
${{ github.workspace }}/pw-browsers
key: ${{ runner.os }}-${{ hashFiles('packages/jupyter-ai/ui-tests/yarn.lock') }}

- name: Install browser
- name: Install Chromium
working-directory: packages/jupyter-ai/ui-tests
run: jlpm install-chromium

- name: Execute e2e tests
- name: Run E2E tests
working-directory: packages/jupyter-ai/ui-tests
run: jlpm test

- name: Upload Playwright Test report
- name: Upload Playwright test report
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: jupyter-ai-playwright-tests-linux
path: |
Expand Down

0 comments on commit 14c4cdd

Please sign in to comment.