Skip to content

fix: to correctly normalize ESLint module paths (#56) #183

fix: to correctly normalize ESLint module paths (#56)

fix: to correctly normalize ESLint module paths (#56) #183

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Install Packages
run: yarn install
- name: Lint
run: yarn lint
- name: Build
run: yarn build
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 19.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 Packages
run: yarn install --ignore-engines
- name: Test
run: yarn test