Add container tests show alert go back update top nav #4219
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
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
name: Build & Test | |
env: | |
CYPRESS_CACHE_FOLDER: ~/cypress-binary-cache | |
CYPRESS_DASHBOARD_RECORD_KEY: ${{ secrets.CYPRESS_DASHBOARD }} | |
jobs: | |
prepare: | |
uses: ./.github/workflows/prepare.yml | |
secrets: inherit | |
with: | |
buildcache_key: buildcache-${{ github.ref }} | |
unit: | |
name: Unit Tests | |
needs: prepare | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.14.0' | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/tmp_build | |
~/cypress-binary-cache | |
key: buildcache-${{ github.ref }} | |
- run: cp -r ~/tmp_build/* . | |
- run: npm test --prefix core || exit 1 | |
mock_engine: | |
name: Mock Engine Tests | |
runs-on: ubuntu-latest | |
needs: prepare | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.14.0' | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/tmp_build | |
~/cypress-binary-cache | |
key: buildcache-${{ github.ref }} | |
- run: cp -r ~/tmp_build/* . | |
- run: npm i -g cypress | |
- run: npm i -g live-server | |
- run: bash ./test/mockengine.sh || exit 1 | |
container_unit_tests: | |
name: Container Unit Tests | |
runs-on: ubuntu-latest | |
needs: prepare | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.14.0' | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/tmp_build | |
~/cypress-binary-cache | |
key: buildcache-${{ github.ref }} | |
- run: cp -r ~/tmp_build/* . | |
- run: npm test --prefix container || exit 1 | |
container_e2e_tests: | |
name: Container E2E Tests | |
runs-on: ubuntu-latest | |
needs: prepare | |
env: | |
USE_CYPRESS_DASHBOARD: false # enable when trying to debug | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.14.0' | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/tmp_build | |
~/cypress-binary-cache | |
key: buildcache-${{ github.ref }} | |
- run: cp -r ~/tmp_build/* . | |
- run: bash ./container/run-container-e2e.sh || exit 1 | |
e2e: | |
name: Integration Tests | |
needs: prepare | |
runs-on: ubuntu-latest | |
env: | |
USE_CYPRESS_DASHBOARD: true # enable when trying to debug | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.14.0' | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/tmp_build | |
~/cypress-binary-cache | |
key: buildcache-${{ github.ref }} | |
- run: cp -r ~/tmp_build/* . | |
- run: sudo apt-get install libgconf-2-4 libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb | |
- run: npm install --prefix test/e2e-test-application @babel/plugin-proposal-class-properties | |
- run: ls test | |
- run: bash ./test/e2e-js.sh || exit 1 | |
- run: bash ./test/e2e-angular.sh || exit 1 | |
docu_check: | |
name: Check Documentation | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.14.0' | |
- run: cd ./scripts && npm ci | |
- run: bash ./scripts/docuCheck.sh |