mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-21 06:53:17 +08:00
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
name: Unit Tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
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 run ci --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
|
|
|
|
# Coveralls is throwing 500. Disabled for now.
|
|
# - name: Upload Coverage to Coveralls
|
|
# uses: coverallsapp/github-action@v2
|
|
# with:
|
|
# github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
# flag-name: unit
|