mermaid/.github/workflows/test.yml

52 lines
1.4 KiB
YAML
Raw Normal View History

name: Unit Tests
2023-07-02 06:33:31 +02:00
on: [push, pull_request, merge_group]
permissions:
contents: read
jobs:
2023-07-02 06:44:35 +02:00
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
# uses version from "packageManager" field in package.json
- name: Setup Node.js
uses: actions/setup-node@v4
2022-09-04 21:30:47 +02:00
with:
cache: pnpm
node-version-file: '.node-version'
2022-09-04 21:30:47 +02:00
- name: Install Packages
run: |
pnpm install --frozen-lockfile
2022-09-04 21:30:47 +02:00
env:
CYPRESS_CACHE_FOLDER: .cache/Cypress
2022-09-04 21:30:47 +02:00
- name: Run Unit Tests
run: |
2023-06-17 14:10:06 +02:00
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: |
2023-06-17 14:10:06 +02:00
pnpm exec vitest run ./packages/mermaid/src/diagrams/gantt/ganttDb.spec.ts --coverage
2023-06-17 14:24:13 +02:00
- 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' }}
2023-06-17 14:10:06 +02:00
with:
files: ./coverage/vitest/lcov.info
flags: unit
name: mermaid-codecov
2023-07-02 09:52:00 +02:00
fail_ci_if_error: false
2023-06-17 14:10:06 +02:00
verbose: true
2023-07-03 15:49:11 +02:00
token: 6845cc80-77ee-4e17-85a1-026cd95e0766