diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index da91220..b01bbb9 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -21,6 +21,10 @@ on: required: false type: string default: '20' + MORYX_COMMERCIAL_BUILD: + required: false + type: boolean + default: false secrets: npm_auth_token: required: false @@ -34,17 +38,11 @@ on: jobs: Tests: runs-on: ubuntu-latest + env: + MORYX_COMMERCIAL_BUILD: ${{ inputs.MORYX_COMMERCIAL_BUILD }} steps: - uses: actions/checkout@v4 - # - uses: actions/cache@v4 - # id: cache-nuget - # with: - # path: ${{ github.workspace }}/.nuget/packages - # key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} - # restore-keys: | - # ${{ runner.os }}-nuget- - - name: 🔧 Setup Node uses: actions/setup-node@v4 with: