Skip to content

fix: avoid exposing local config path in config notice #34

fix: avoid exposing local config path in config notice

fix: avoid exposing local config path in config notice #34

Workflow file for this run

name: ci
on:
push:
pull_request:
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install
run: npm ci
- name: Lint
run: npm run lint --if-present
- name: Test
run: npm run test --if-present