Skip to content

chore(deps): bump commander from 6.2.1 to 11.1.0 #755

chore(deps): bump commander from 6.2.1 to 11.1.0

chore(deps): bump commander from 6.2.1 to 11.1.0 #755

Workflow file for this run

name: NodeCI
on: [push]
jobs:
test:
name: Test on node ${{ matrix.node-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: setup graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-optional
env:
CI: 'true'
- name: Build
run: yarn build
env:
CI: 'true'
- name: Lint
run: yarn lint
env:
CI: 'true'
- name: Test
run: yarn test
env:
CI: 'true'