Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Theia GHA tests to use quay.io #1566

Merged
merged 16 commits into from Nov 9, 2021
4 changes: 2 additions & 2 deletions .github/workflows/theia-zowe-explorer-ci.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
- run: ls -la temp/plugins

- name: Start Theia
run: docker run --name theia --init -d -p 3000:3000 -v "${PWD}/temp:/home/theia/.theia" theiaide/theia:1.15.0
run: docker run --name theia --init -d -p 3000:3000 --user theia -v "${PWD}/temp/plugins/:/home/theia/plugins" quay.io/zowe-explorer/theia:latest
# NOTE(Kelosky): alternatively, we could run docker via something like this; however, we cannot hot reload
# hosted VS Code extensions after theia is started (at least at the time this was written).
# services:
Expand All @@ -53,7 +53,7 @@ jobs:
- run: yarn lint

- name: Verify plugin loaded
run: docker exec -i theia ls -la /home/theia/.theia/plugins
run: docker exec -i theia ls -la /home/theia/plugins

- name: Verify Theia accessible
run: curl --fail http://localhost:3000
Expand Down