Skip to content

PLTFORMS-1982: Adding New commands to CLI #260

PLTFORMS-1982: Adding New commands to CLI

PLTFORMS-1982: Adding New commands to CLI #260

Workflow file for this run

name: PRB_Linux
env:
SAIL_CLIENT_ID: ${{secrets.CLI_TEST_TENANT_CLIENT_ID}}
SAIL_CLIENT_SECRET: ${{secrets.CLI_TEST_TENANT_CLIENT_SECRET}}
SAIL_BASE_URL: https://css-255.api.identitynow.com
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: linux-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
sailpoint-cli-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Check env
run: env
- name: Test
run: go test -v -count=1 ./...
- name: Install
run: make install
- name: Init connector and customizer project
run: |
sail conn init connectorTest
sail conn customizers init customizerTest
- name: Test connector project from init command
working-directory: ./connectorTest
run: |
npm install
npm run test
npm run pack-zip
- name: Test customizer project from init command
working-directory: ./customizerTest
run: |
npm install
npm run test
npm run pack-zip