diff options
author | Josh Spicer <joshspicer@github.com> | 2022-07-14 21:12:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 21:12:11 +0300 |
commit | 01b46faa2dd7d9bd4f453b78f49457f2ffc67d3c (patch) | |
tree | 94cbf1eb77f763af807d34e168777c37dbc2668c /.github/workflows/test-pr-temp-tweak.yml | |
parent | 7f551f8c2f1129d6485088196bfeb28ff5ee3230 (diff) |
smart auto-install multiple versions for `node` (#56)
* node
* fix comment (no-ci)
* Apply suggestions from code review
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
* 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 <skhandale@microsoft.com>
Diffstat (limited to '.github/workflows/test-pr-temp-tweak.yml')
-rw-r--r-- | .github/workflows/test-pr-temp-tweak.yml | 15 |
1 files changed, 15 insertions, 0 deletions
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"' |