Skip to content

Commit

Permalink
add workflow for verifying th ee2e test runner is buildable
Browse files Browse the repository at this point in the history
  • Loading branch information
hannojg committed Feb 29, 2024
1 parent 40b51e2 commit 0762d2c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/checkE2ETestCode.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check e2e test code

on:
workflow_call:
pull_request:
types: [opened, synchronize]
paths:
- 'tests/e2e/**'
- 'src/libs/E2E/**'

jobs:
lint:
if: ${{ github.actor != 'OSBotify' || github.event_name == 'workflow_call' }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: ./.github/actions/composite/setupNode

- name: Compile e2e test runner
run: npm run e2e-test-runner-build

0 comments on commit 0762d2c

Please sign in to comment.