-
-
Notifications
You must be signed in to change notification settings - Fork 8
51 lines (49 loc) · 1.24 KB
/
pr-actions-config-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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 }}