Skip to content

Add basic command-line parsing example in quick start section #7

Add basic command-line parsing example in quick start section

Add basic command-line parsing example in quick start section #7

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
container: node:20
steps:
- uses: actions/checkout@v3
- run: yarn install
- run: yarn test
- if: matrix.node-version == '16'
uses: coverallsapp/github-action@master
with:
github-token: ${{github.token}}