chore(deps-dev): bump mermaid from 10.9.1 to 10.9.3 #3704
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
# Workflow to run CI and tests for all branches on push and on pull requests | |
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
- 'lts' | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- name: Install Dependencies | |
run: npm ci --prefer-offline | |
- name: Build | |
run: npm run build | |
- name: Run Tests & Lint | |
run: npm test |