Skip to content

Commit

Permalink
GLSP-1287: Add CI job for E2E tests
Browse files Browse the repository at this point in the history
Add github actions workflow for E2E testing with glsp-playwright
Part of eclipse-glsp/glsp#1287
  • Loading branch information
tortmayr committed Jul 17, 2024
1 parent 89dfe80 commit a080f26
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: 'E2E'

concurrency:
group: playwright-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
playwright:
name: E2E Tests
timeout-minutes: 120
runs-on: ubuntu-latest
env:
CI: 'false'
STANDALONE_URL: 'file://${{ github.workspace }}/glsp-client/examples/workflow-test/repositories/glsp-client/examples/workflow-standalone/app/diagram.html'
GLSP_SERVER_PORT: '8081'
GLSP_SERVER_PLAYWRIGHT_MANAGED: 'true'
GLSP_WEBSOCKET_PATH: 'workflow'
THEIA_URL: 'http://localhost:3000'
VSCODE_VSIX_ID: 'eclipse-glsp.workflow-vscode-example'
VSCODE_VSIX_PATH: '${{ github.workspace }}/.../vscode-example-2.2.0-next.vsix'
GLSP_SERVER_DEBUG: 'true'

steps:
- uses: actions/[email protected]
with:
path: 'glsp-client'
- uses: actions/[email protected]
with:
repository: 'eclipse-glsp/glsp-playwright'
path: 'glsp-playwright'
- uses: actions/[email protected]
with:
node-version: '18'
- name: Install dependencies
run: |
cd glsp-client
yarn
cd ../glsp-playwright
yarn
- name: Run Playwright tests
id: run_playwright_tests
run: |
cd glsp-playwright
yarn test:standalone
continue-on-error: true
- name: Upload Playwright report
uses: actions/[email protected]
with:
name: playwright-report
path: glsp-client/examples/workflow-test/playwright-report/
- if: steps.run_playwright_tests.outcome == 'failure'
run: exit 1

0 comments on commit a080f26

Please sign in to comment.