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: |