Skip to content

Config option to allow custom parameter syntax #351

Config option to allow custom parameter syntax

Config option to allow custom parameter syntax #351

Workflow file for this run

name: Test
on: ['push', 'pull_request']
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run test
lint-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: npm install
- run: npm run lint
- run: npm run build