Skip to content

Add in undocumented mssql option for backwards compatibility. #63

Add in undocumented mssql option for backwards compatibility.

Add in undocumented mssql option for backwards compatibility. #63

name: Laravel Tests
on:
pull_request:
jobs:
leia-tests:
runs-on: ${{ matrix.os }}
env:
TERM: xterm
strategy:
fail-fast: false
matrix:
lando-version:
- 3-dev-slim
os:
- ubuntu-22.04
node-version:
- '18'
leia-test:
- examples/laravel-init
- examples/laravel-custom
- examples/laravel-defaults
- examples/laravel-export
- examples/laravel-import
- examples/laravel-mysql8
- examples/laravel-nginx
- examples/7.1
- examples/7.2
- examples/7.4
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
cache: npm
- name: Install NPM dependencies
run: npm clean-install --production --prefer-offline --frozen-lockfile
- name: Bundle Deps
uses: lando/prepare-release-action@v2
with:
lando-plugin: true
version: dev
sync: false
- name: Setup lando ${{ matrix.lando-version }}
uses: lando/setup-lando@v2
with:
lando-version: ${{ matrix.lando-version }}
config: |
setup.skipCommonPlugins=true
setup.plugins.@lando/laravel=/home/runner/work/laravel/laravel
telemetry: false
- name: Run Leia Tests
uses: lando/run-leia-action@v2
with:
leia-test: "./${{ matrix.leia-test }}/README.md"
cleanup-header: "Destroy tests"
shell: bash
stdin: true