Unit Tests UI - 7848331362 - @ibeckermayer #23478
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: Unit Tests UI | |
run-name: Unit Tests UI - ${{ github.run_id }} - @${{ github.actor }} | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/unit-tests-ui.yaml' | |
- 'web/**' | |
- 'gen/proto/js/**' | |
- 'gen/proto/ts/**' | |
- 'package.json' | |
- 'yarn.lock' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
- 'tsconfig.json' | |
- 'tsconfig.node.json' | |
- 'jest.config.js' | |
merge_group: | |
paths: | |
- '.github/workflows/unit-tests-ui.yaml' | |
- 'web/**' | |
- 'gen/proto/js/**' | |
- 'gen/proto/ts/**' | |
- 'package.json' | |
- 'yarn.lock' | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
- 'tsconfig.json' | |
- 'tsconfig.node.json' | |
- 'jest.config.js' | |
jobs: | |
test: | |
name: Test UI | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/gravitational/teleport-buildbox:teleport15 | |
# See https://github.com/gravitational/teleport/blob/2aaa3ec9a129213db8a18083d5b4681f86328d34/web/packages/teleterm/src/agentCleanupDaemon/agentCleanupDaemon.test.ts#L82-L89 | |
# for the original impetus for adding --init. | |
options: --init | |
steps: | |
- name: Checkout OSS Teleport | |
uses: actions/checkout@v4 | |
- name: Print Node version | |
run: | | |
node --version | |
- name: Install Yarn dependencies | |
run: bash web/packages/build/scripts/yarn-install-frozen-lockfile.sh | |
- name: Build WASM | |
run: yarn build-wasm | |
- name: Run tests | |
run: yarn test |