Skip to content

Feat: Environment ID argument (#131) #385

Feat: Environment ID argument (#131)

Feat: Environment ID argument (#131) #385

Workflow file for this run

name: CI
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- node
steps:
- uses: actions/checkout@v1
- name: Use Node.js 14.x
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: install dependencies
working-directory: ${{ matrix.package }}
run: yarn
- name: run test
working-directory: ${{ matrix.package }}
run: yarn test --colors
env:
CI: true
- name: lint
working-directory: ${{ matrix.package }}
run: yarn lint
- name: run the cli
working-directory: ${{ matrix.package }}
run: node bin/cli.js --help