From 01b46faa2dd7d9bd4f453b78f49457f2ffc67d3c Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Thu, 14 Jul 2022 14:12:11 -0400 Subject: smart auto-install multiple versions for `node` (#56) * node * fix comment (no-ci) * Apply suggestions from code review Co-authored-by: Samruddhi Khandale * update test scenario * remove minor for node 18 * update scenarios to object notation * add shabang * only set default node once Co-authored-by: Samruddhi Khandale --- .github/workflows/test-pr-temp-tweak.yml | 15 +++++++++++++++ .github/workflows/test-pr.yaml | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/test-pr-temp-tweak.yml (limited to '.github/workflows') diff --git a/.github/workflows/test-pr-temp-tweak.yml b/.github/workflows/test-pr-temp-tweak.yml new file mode 100644 index 0000000..3f3dbe9 --- /dev/null +++ b/.github/workflows/test-pr-temp-tweak.yml @@ -0,0 +1,15 @@ +name: "test" +on: + pull_request: + paths-ignore: + - ./**/oryx/** + - ./**/java/** + - ./**/dotnet/** + - ./**/php/** + - ./**/node/** + +jobs: + test: + runs-on: ubuntu-latest + steps: + - run: 'echo "No build required ; Temporary tweak for merging the PRs until branch protection rules are updated"' diff --git a/.github/workflows/test-pr.yaml b/.github/workflows/test-pr.yaml index 86b492d..46334d7 100644 --- a/.github/workflows/test-pr.yaml +++ b/.github/workflows/test-pr.yaml @@ -39,7 +39,7 @@ jobs: terraform: ./**/terraform/** test: - needs: detect-changes + needs: [detect-changes] runs-on: ubuntu-latest continue-on-error: true strategy: -- cgit v1.2.3