mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
4d0c461fa3
pushes to non-develop branches will not send coverage reports. This might reduce the coverage variability issue we're having.
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
name: Unit Tests
|
|
|
|
on: [push, pull_request, merge_group]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
unit-test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x]
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
# uses version from "packageManager" field in package.json
|
|
|
|
- name: Setup Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
cache: pnpm
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Install Packages
|
|
run: |
|
|
pnpm install --frozen-lockfile
|
|
env:
|
|
CYPRESS_CACHE_FOLDER: .cache/Cypress
|
|
|
|
- name: Run Unit Tests
|
|
run: |
|
|
pnpm test:coverage
|
|
|
|
- name: Run ganttDb tests using California timezone
|
|
env:
|
|
# Makes sure that gantt db works even in a timezone that has daylight savings
|
|
# since some days have 25 hours instead of 24.
|
|
TZ: America/Los_Angeles
|
|
run: |
|
|
pnpm exec vitest run ./packages/mermaid/src/diagrams/gantt/ganttDb.spec.ts --coverage
|
|
|
|
- name: Upload Coverage to Codecov
|
|
uses: codecov/codecov-action@v3
|
|
# Run step only pushes to develop and pull_requests
|
|
if: ${{ github.event_name == 'pull_request' || github.ref == 'refs/heads/develop' }}
|
|
with:
|
|
files: ./coverage/vitest/lcov.info
|
|
flags: unit
|
|
name: mermaid-codecov
|
|
fail_ci_if_error: false
|
|
verbose: true
|
|
token: 6845cc80-77ee-4e17-85a1-026cd95e0766
|