Skip to content

Frontend Tests & Coverage #894

Frontend Tests & Coverage

Frontend Tests & Coverage #894

Workflow file for this run

name: Frontend Tests & Coverage
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
paths:
- 'frontend/taipy-gui/**'
workflow_dispatch:
permissions:
pull-requests: write
contents: "read"
checks: "write"
id-token: "write"
env:
NODE_OPTIONS: --max-old-space-size=4096
jobs:
frontend-jest:
timeout-minutes: 20
strategy:
matrix:
node-version: [20]
os: [ubuntu-latest] #, windows-latest, macos-13]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./frontend/taipy-gui
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: npm build and test with node ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
# - name: Hash taipy-gui source code
# id: hash-gui-fe
# working-directory: ./
# run: |
# python tools/frontend/hash_source.py --taipy-gui-only
# echo "HASH=$(cat hash.txt)" >> $GITHUB_OUTPUT
# rm hash.txt
# shell: bash
# - name: Restore cached frontend build
# id: cache-gui-fe-build
# uses: actions/cache@v4
# with:
# path: taipy/gui/webapp
# key: taipy-gui-frontend-build-${{ runner.os }}-${{ steps.hash-gui-fe.outputs.HASH }}
- run: |
cd dom
npm ci
cd ..
npm ci --omit=optional
npm run build --if-present
npm test
# - name: Install dom dependencies
# if: steps.cache-gui-fe-build.outputs.cache-hit != 'true'
# working-directory: ./frontend/taipy-gui/dom
# run: npm ci
# - name: Install dependencies
# if: steps.cache-gui-fe-build.outputs.cache-hit != 'true'
# run: npm ci --omit=optional
# - if: steps.cache-gui-fe-build.outputs.cache-hit != 'true'
# run: npm run build --if-present
# - if: steps.cache-gui-fe-build.outputs.cache-hit != 'true'
# run: npm test
- name: Code coverage
# if: matrix.os == 'ubuntu-latest' && github.event_name == 'pull_request' && steps.cache-gui-fe-build.outputs.cache-hit != 'true'
uses: artiomtr/[email protected]
with:
threshold: "80"
working-directory: "./frontend/taipy-gui"
skip-step: install
annotations: failed-tests
base-coverage-file: report.json
coverage-file: report.json