chore(deps-dev): bump eslint from 9.14.0 to 9.15.0 #926
Workflow file for this run
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
name: Test | |
on: | |
push: {} | |
pull_request: {} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.19, 20] | |
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@v4 | |
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 |