Skip to content

Minor fix for lint github action #14

Minor fix for lint github action

Minor fix for lint github action #14

Workflow file for this run

name: Coverage
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
coverage:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: coverage with Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: |
yarn install --silent --non-interactive
yarn coverage