Skip to content

Bump eslint from 8.52.0 to 8.54.0 #146

Bump eslint from 8.52.0 to 8.54.0

Bump eslint from 8.52.0 to 8.54.0 #146

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node-version:
- 16.x
- 18.x
- 20.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install fontforge (ubuntu)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
sudo apt update
sudo apt install fontforge
- name: Install fontforge (macos)
if: ${{ matrix.os == 'macos-latest' }}
run: |
brew update
brew install fontforge
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run cover
- name: Publish to coveralls.io
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}