-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#2: first pass on support for lando setup
- Loading branch information
Showing
14 changed files
with
34,490 additions
and
14,609 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Setup Tests | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
setup-lando-os-test: | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
term: xterm | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
# - macos-12 | ||
- ubuntu-22.04 | ||
# - windows-2022 | ||
node-version: | ||
- '16' | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install node ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: yarn | ||
- name: Install Yarn dependencies and prepare | ||
run: | | ||
yarn install --prefer-offline --frozen-lockfile | ||
yarn prepare | ||
- name: Setup Lando version | ||
uses: ./ | ||
with: | ||
dependency-check: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.