-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove GITHUB_TOKEN autoauth and ensure lando update exit codes nonze…
…ro on update check fails (#141) * write failing test for lando update GITHUB_TOKEN issue * write failing test for lando update GITHUB_TOKEN issue part 2 * write failing test for lando update GITHUB_TOKEN issue part 3 * write failing test for lando update GITHUB_TOKEN issue part 4 * change octokit/rest to use LANDO_GITHUB_TOKEN if set
- Loading branch information
Showing
5 changed files
with
76 additions
and
3 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
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,62 @@ | ||
name: Update Tests | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
leia-tests: | ||
runs-on: ${{ matrix.os }} | ||
env: | ||
TERM: xterm | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
lando-version: | ||
- 3-slim | ||
# uncomment to test against bleeding edge cli | ||
# - 3-dev-slim | ||
leia-test: | ||
- examples/update | ||
node-version: | ||
- "18" | ||
os: | ||
# - macos-13 | ||
# - macos-14 | ||
- ubuntu-22.04 | ||
# - windows-2022 | ||
shell: | ||
- bash | ||
|
||
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 dependencies | ||
run: npm clean-install --prefer-offline --frozen-lockfile | ||
# bundle deps is needed so local plugin installation succeeds | ||
- name: Bundle Deps | ||
uses: lando/prepare-release-action@v3 | ||
with: | ||
lando-plugin: true | ||
version: dev | ||
sync: false | ||
- name: Setup lando ${{ matrix.lando-version }} | ||
uses: lando/setup-lando@v3 | ||
with: | ||
lando-version: ${{ matrix.lando-version }} | ||
telemetry: false | ||
config: | | ||
setup.skipCommonPlugins=true | ||
setup.plugins.@lando/core=${{ github.workspace }} | ||
- name: Run Leia Tests | ||
uses: lando/run-leia-action@v2 | ||
with: | ||
leia-test: "./${{ matrix.leia-test }}/README.md" | ||
cleanup-header: "Destroy tests" | ||
shell: ${{ matrix.shell }} | ||
stdin: true |
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
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