fix(maz-ui): MazAnimateCounter - animation on mobile browsers #2694
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: Lib Tests Unit & Publish Coverage | |
on: | |
push: | |
branches-ignore: | |
- dependabot/** | |
paths: | |
- '.github/workflows/lib-test-unit.yml' | |
- 'packages/lib/**' | |
- 'pnpm-lock.yaml' | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: szenius/[email protected] | |
with: | |
timezoneLinux: 'Europe/Paris' | |
timezoneMacos: 'Europe/Paris' | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: latest | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '21' | |
cache: 'pnpm' | |
- name: Install modules | |
run: pnpm install --frozen-lockfile | |
- name: Test & Publish Code Coverage | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: pnpm --filter maz-ui test:unit:coverage --silent | |
coverageLocations: | | |
${{github.workspace}}/packages/lib/coverage/clover.xml:clover |