We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e55a46 commit 1d6ef1bCopy full SHA for 1d6ef1b
.github/workflows/rpe_test.yml
@@ -103,7 +103,13 @@ jobs:
103
if: matrix.os == 'ubuntu-latest' && always()
104
run: find $HOME -type f -name "rpe.log" -exec cat {} +
105
106
-
+ - name: E2E Playwright shut down test on Linux latest
107
+ if: ${{ matrix.os == 'ubuntu-latest' }}
108
+ run: |
109
+ rm -rf $HOME/rpe.log && xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npx playwright test -- restart.test.js
110
+ cat $HOME/rpe.log | tail -n 2 | grep "Shutting down server..."
111
+ [[ $? != 0 ]] && exit 1
112
+
113
- name: Run ESLint only on ubuntu-latest
114
if: ${{ matrix.os == 'ubuntu-latest' }}
115
run: npx eslint src/
0 commit comments