Skip to content

chore(deps): bump @types/mdast from 3.0.11 to 4.0.1 #803

chore(deps): bump @types/mdast from 3.0.11 to 4.0.1

chore(deps): bump @types/mdast from 3.0.11 to 4.0.1 #803

Workflow file for this run

name: Test
on:
push: {}
pull_request: {}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- name: Install Mermaid `trebuchet ms` font
run: |
# accept Microsoft Corefonts EULA first
echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | \
sudo debconf-set-selections
# install fonts
sudo apt-get install ttf-mscorefonts-installer -y \
|| { sudo apt-get update && sudo apt-get install ttf-mscorefonts-installer -y; }
- uses: actions/checkout@v4
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Update NPM
# NPM 10 drops Node.JS v14 support
run: npm install -g npm@9
- name: Install NPM Packages
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm test