diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5f13c2f9c..a54496832 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -196,10 +196,10 @@ jobs: run: bazel build ... -c dbg - name: Test run: bazel test ... -c dbg - # TODO(robinlinden): This no longer runs in CI due to http://example.com - # being inaccessible. - # - name: Run - # run: bazel run browser:tui -c dbg + - name: Run + run: | + echo "

Example

This is an example page.

" >example.html + bazel run browser:tui -c dbg -- file:/$(PWD)/example.html windows-clang-cl: runs-on: windows-2022 @@ -216,9 +216,10 @@ jobs: - run: echo "build --config clang-cl" >.bazelrc.local - run: echo "build --disk_cache ~/.cache/bazel" >>.bazelrc.local - run: bazel test ... - # TODO(robinlinden): This no longer runs in CI due to http://example.com - # being inaccessible. - # - run: bazel run browser:tui + - name: Run + run: | + echo "

Example

This is an example page.

" >example.html + bazel run browser:tui -- file:/$(PWD)/example.html clang-format: runs-on: ubuntu-22.04