Skip to content

Unit Tests UI - 13201721875 - @greedy52 #44373

Unit Tests UI - 13201721875 - @greedy52

Unit Tests UI - 13201721875 - @greedy52 #44373

Workflow file for this run

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'
- 'pnpm-lock.yaml'
- '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'
- 'pnpm-lock.yaml'
- '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:teleport17
# 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 JS dependencies
run: |
export COREPACK_INTEGRITY_KEYS='{"npm":[{"expires":"2025-01-29T00:00:00.000Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","keytype":"ecdsa-sha2-nistp256","scheme":"ecdsa-sha2-nistp256","key":"MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAE1Olb3zMAFFxXKHiIkQO5cJ3Yhl5i6UPp+IhuteBJbuHcA5UogKo0EWtlWwW6KSaKoTNEYL7JlCQiVnkhBktUgg=="},{"expires":null,"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","keytype":"ecdsa-sha2-nistp256","scheme":"ecdsa-sha2-nistp256","key":"MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEY6Ya7W++7aUPzvMTrezH6Ycx3c+HOKYCcNGybJZSCJq/fd7Qa8uuAKtdIkUQtQiEKERhAmE5lMMJhP8OkDOa2g=="}]}'
pnpm install --frozen-lockfile
- name: Build WASM
run: pnpm build-wasm
- name: Run tests
run: pnpm test