From 2bf5eec3b6baf755aacdf585dc877c0673d28d2b Mon Sep 17 00:00:00 2001 From: Paul Merlin Date: Sat, 13 Jun 2020 14:33:32 +0200 Subject: [PATCH] Test dist download on CI --- .github/workflows/dev.yml | 8 +++++++- .github/workflows/prod.yml | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 8a7cf52..f72f4c3 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -14,12 +14,18 @@ jobs: run: | npm install npm run all - - name: Test + - name: Test wrapper uses: ./ with: wrapper-directory: __tests__/data/basic build-root-directory: __tests__/data/basic arguments: help + - name: Test dist download + uses: ./ + with: + gradle-version: 6.5 + build-root-directory: __tests__/data/basic + arguments: help - name: Check for uncommitted changes # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed. run: | diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index fbcbc5b..2262923 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -13,12 +13,18 @@ jobs: steps: - name: Checkout sources uses: actions/checkout@v2 - - name: Test + - name: Test wrapper uses: ./ with: wrapper-directory: __tests__/data/basic build-root-directory: __tests__/data/basic arguments: help + - name: Test dist download + uses: ./ + with: + gradle-version: 6.5 + build-root-directory: __tests__/data/basic + arguments: help - name: Check for uncommitted changes # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed. run: |