revert change #2715
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Browser Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11.0' | |
- name: Build with Ant | |
run: ant -noinput -buildfile build.xml peergos_submodule_sync dist | |
- name: echo chrome | |
run: which google-chrome | |
shell: bash | |
- name: chrome-version | |
run: google-chrome --version | |
shell: bash | |
# - name: browser-tests | |
# working-directory: browser_tests | |
# run: ./setup_and_run_browser_tests.sh | |
# timeout-minutes: 90 |