mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-25 03:16:53 +00:00
* ci(gh-workflows): 👷 bump up versions and minor updates * ci(gh-workflows): 👷 bump up versions of verify-linked-issue-action to v0.71 * ci(e2e-k3s): 👷 use ipconfig instead * ci(remove-label): 👷 create separate step for remove label --------- Signed-off-by: Prashant Shahi <prashant@signoz.io>
25 lines
668 B
YAML
25 lines
668 B
YAML
name: Playwright Tests
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
playwright:
|
|
defaults:
|
|
run:
|
|
working-directory: frontend
|
|
timeout-minutes: 60
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "16.x"
|
|
- name: Install dependencies
|
|
run: CI=1 yarn install
|
|
- name: Install Playwright
|
|
run: npx playwright install --with-deps
|
|
- name: Run Playwright tests
|
|
run: yarn playwright
|
|
env:
|
|
# This might depend on your test-runner/language binding
|
|
PLAYWRIGHT_TEST_BASE_URL: ${{ secrets.PLAYWRIGHT_TEST_BASE_URL }}
|