Skip to content

Bump default cli version to v0.4.0 (#7) #26

Bump default cli version to v0.4.0 (#7)

Bump default cli version to v0.4.0 (#7) #26

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint shell scripts
run: shellcheck install.sh run.sh
- name: Validate action.yml
run: |
npm install -g @action-validator/cli
action-validator action.yml
test-install:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Test CLI installation
run: |
bash install.sh
./linear-release --version
env:
CLI_VERSION: latest
RUNNER_OS: ${{ runner.os }}