Skip to content

fix: adds an option to select domain before profile export #8151

fix: adds an option to select domain before profile export

fix: adds an option to select domain before profile export #8151

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Harden Runner
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
if: ${{ matrix.node-version == '22.x' }}
- run: npm run lint:cypress
if: ${{ matrix.node-version == '22.x' }}
- run: npm run ci-prettify
- run: npm run test-ci
- uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
name: Upload Coverage Results
if: ${{ matrix.node-version == '22.x' }}
with:
directory: ./coverage/openamtui
- name: Upload Karma Results
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: sample-web-ui-unit-${{ matrix.node-version }}
path: TESTS-Chrome-${{ matrix.node-version }}_*.xml