Skip to content

fix: handle nested arguments in the argument parser #133

fix: handle nested arguments in the argument parser

fix: handle nested arguments in the argument parser #133

Workflow file for this run

name: Node.js
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Type Check
run: yarn type-check
- name: Production Build
run: yarn build