Skip to content

feat: add "disabled" option #21

feat: add "disabled" option

feat: add "disabled" option #21

Workflow file for this run

name: Test
on: [push, pull_request, workflow_call]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Node.js modules
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test