Skip to content

Update dependency commander to v13 #2267

Update dependency commander to v13

Update dependency commander to v13 #2267

Workflow file for this run

name: CI Test
on:
push: []
jobs:
build:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
# our developers use linux, osx and might use windows in the future
# so we make sure the build and test pipeline runs on every one
# of them
os: [ubuntu-latest, macos-latest, windows-2016]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: yarn install, build, and test
run: |
yarn install
yarn build
yarn test
env:
CI: true