Skip to content

Update Docker images #221

Update Docker images

Update Docker images #221

Workflow file for this run

name: Mermaid CI
on:
push:
paths:
- 'mermaid/**'
branches:
- main
pull_request:
paths:
- 'mermaid/**'
branches:
- '*'
jobs:
mermaid-ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: 'Setup Node.js 18'
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Node dependencies
run: npm i
working-directory: mermaid
- name: Lint & tests
run: npm run lint && npm t
working-directory: mermaid