Skip to content

APIGOV-26888 Unable to switch Org with axway CLI #365

APIGOV-26888 Unable to switch Org with axway CLI

APIGOV-26888 Unable to switch Org with axway CLI #365

Workflow file for this run

name: Build
on:
- pull_request
- push
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: '12.x'
- name: Install dependencies
run: yarn
- name: Lint
run: yarn run gulp lint
Test:
needs: Lint
name: ${{ matrix.os }} ${{ matrix.nodeVersion }} Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
nodeVersion: [ '12.18.0', '14.15.1', '16.8.0' ]
os: [ macos-latest, ubuntu-latest, windows-latest ]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.nodeVersion }}
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn run test