Skip to content

Bump actions/setup-node from 3 to 4 #174

Bump actions/setup-node from 3 to 4

Bump actions/setup-node from 3 to 4 #174

Workflow file for this run

name: 'test'
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: make lint
test-default:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./
- run: |
autify --version | grep -v beta
echo token | autify web auth login
shell: bash
- run: |
autify --version | grep -v beta
echo token | autify web auth login
shell: pwsh
test-specific:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./
with:
shell-installer-url: "https://autify-cli-assets.s3.amazonaws.com/autify-cli/channels/beta/install-cicd.bash"
- run: |
autify --version | grep beta
echo token | autify web auth login
shell: bash
- run: |
autify --version | grep beta
echo token | autify web auth login
shell: pwsh
integration-test:
uses: ./.github/workflows/integration-test.yml
with:
shell-installer-url: https://autify-cli-assets.s3.amazonaws.com/autify-cli/channels/stable/install-cicd.bash