-
-
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.
* first pass on setup-lando * use github context instead of secret * fix issue with windows invocation * fix download information group * fix download information group part 2 * fix download information group part 3 * ensure we prep before testing and that we remove debug codes * add to download info * mix in version tests * add version file tests * add version file tests part 2 * add version file tests part 3 * add version file tests part 4
- Loading branch information
Showing
22 changed files
with
21,484 additions
and
493 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,40 @@ | ||
name: PR File Tests | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
setup-lando-os-test: | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
term: xterm | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-22.04 | ||
node-version: | ||
- '16' | ||
lando-version-file: | ||
- '.lando-version' | ||
- '.tool-versions' | ||
|
||
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 ${{ matrix.lando-version-file }} | ||
uses: ./ | ||
with: | ||
lando-version-file: ${{ matrix.lando-version-file }} |
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,37 @@ | ||
name: PR OS 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: ./ |
This file was deleted.
Oops, something went wrong.
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,51 @@ | ||
name: PR Version Tests | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
setup-lando-os-test: | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
term: xterm | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-22.04 | ||
node-version: | ||
- '16' | ||
lando-version: | ||
- '3.x' | ||
- '>2' | ||
- '3' | ||
- '3.14' | ||
- '3.14.0' | ||
- '3-stable' | ||
- '3-edge' | ||
- '3-latest' | ||
- '3-dev' | ||
- 'stable' | ||
- 'edge' | ||
- 'latest' | ||
- 'dev' | ||
|
||
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 ${{ matrix.lando-version }} | ||
uses: ./ | ||
with: | ||
lando-version: ${{ matrix.lando-version }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.14.0 | ||
3.12.0 |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
nodejs 16 | ||
lando 3 | ||
lando 3.11.0 |
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.