Skip to content

v0.8.1

v0.8.1 #120

name: Lint Check & Test
on: [pull_request]
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Lint Check & Test
run: npm run ci