diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 50849e06..c7253cb3 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -20,13 +20,12 @@ jobs: with: node-version: '20.x' - run: npm ci - - name: Run tests + - name: Install xvfb + run: | + sudo apt-get update + sudo apt-get -y install xvfb + - name: Run end-to-end tests run: xvfb-run run test:e2e - # # XVFB is used to provide virtual display: - # # https://github.com/coactions/setup-xvfb - # uses: coactions/setup-xvfb@v1 - # with: - # run: npm run test:e2e - name: Merge reports run: npx ctrf merge e2e/reports --output ctrf-report.json - name: Publish Test Summary Results