Skip to content

fix(scene composer): Color picker bug fixes #543

fix(scene composer): Color picker bug fixes

fix(scene composer): Color picker bug fixes #543

Workflow file for this run

name: E2E Tests - playwright
on: [pull_request]
jobs:
e2e-tests-playwright:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- name: Cache playwright binaries
uses: actions/cache@v3
id: playwright-cache
with:
path: |
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
- name: Install
run:
npm ci --prefer-offline --no-audit --no-fund
- run: npx playwright install --with-deps
if: steps.playwright-cache.outputs.cache-hit != 'true'
- name: test UI
run:
npm run test:ui