diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 37ebc1581..3ab7c527c 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -5,10 +5,16 @@ on: branches: - main - 'release/**' + paths-ignore: + - '**/docs/**' + - '**.md' pull_request: branches: - main - 'release/**' + paths-ignore: + - '**/docs/**' + - '**.md' jobs: e2e-test: @@ -21,7 +27,7 @@ jobs: uses: actions/checkout@v4 - name: Run tests - run: "./tools/run_docker.sh e2e-tests" + run: './tools/run_docker.sh e2e-tests' - name: Upload Playwright report uses: actions/upload-artifact@v4 @@ -34,10 +40,10 @@ jobs: - name: Dump server logs if: failure() run: docker logs deephaven-plugins > /tmp/server-log.txt - + - name: Upload server logs if: failure() uses: actions/upload-artifact@v4 with: name: server-logs - path: /tmp/server-log.txt \ No newline at end of file + path: /tmp/server-log.txt