-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add example GH Action test file for debugging
- Loading branch information
1 parent
5cfb828
commit 797925c
Showing
1 changed file
with
54 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# TODO Remove this test GH Action again after debugging | ||
name: E2E Tests | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
e2e-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v3 | ||
with: | ||
path: | | ||
node_modules | ||
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-modules- | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20.10.0 | ||
|
||
- name: Install Dependencies | ||
run: yarn install --frozen-lockfile | ||
|
||
- name: Build Docker image | ||
run: docker build . --tag=nexus-web:fresh | ||
|
||
- name: Start services | ||
run: docker-compose -f ci/docker-compose.yml up -d && sleep 60 | ||
|
||
- name: Copy nexus-web into Cypress container | ||
run: docker cp ./. cypress:/e2e | ||
|
||
- name: Run e2e tests | ||
run: >- | ||
echo | timeout --verbose 20m docker exec | ||
-e 'DEBUG=cypress:launcher:browsers NODE_TLS_REJECT_UNAUTHORIZED=0' | ||
-t | ||
cypress | ||
cypress run | ||
--headless | ||
--config-file cypress.config.ts | ||
--browser chrome | ||
--record | ||
--key ${{ secrets.CYPRESS_RECORD_KEY }} | ||
- name: Cleanup Docker Containers | ||
if: always() | ||
run: docker-compose -f ci/docker-compose.yml down --rmi "local" --volumes |