Skip to content

fix bug causing lando setup fail on POSIX for lando <3.24 #255

fix bug causing lando setup fail on POSIX for lando <3.24

fix bug causing lando setup fail on POSIX for lando <3.24 #255

name: Actions Config Tests
on:
pull_request:
jobs:
setup-lando-actions-config-test:
runs-on: ${{ matrix.os }}
env:
LANDO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
strategy:
fail-fast: false
matrix:
os:
- macos-13
- macos-14
- ubuntu-24.04
- windows-2022
telemetry:
- true
- false
node-version:
- '20'
debug:
- true
- false
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies and prepare
run: |
npm clean-install --prefer-offline --frozen-lockfile
npm run prepare
- name: Setup Lando version
uses: ./
with:
auto-setup: lando setup --yes --skip-networking
config-file: test-config.yaml
config: |
pirog=5001
captains.enterprise=kirk
captains.enterprise-nx01=archer
debug: true
telemetry: ${{ matrix.telemetry }}