Skip to content

Test with real npm - all combinations #28

Test with real npm - all combinations

Test with real npm - all combinations #28

name: Test with real npm - all combinations
on:
workflow_dispatch:
permissions:
id-token: write
contents: write
jobs:
test-global-not-monorepo:
uses: ./.github/workflows/common-test.yml
with:
mode: global
testMonorepo: false
secrets: inherit
test-local-not-monorepo:
needs: test-global-not-monorepo
uses: ./.github/workflows/common-test.yml
with:
mode: local
testMonorepo: false
secrets: inherit
test-global-monorepo:
needs: test-local-not-monorepo
uses: ./.github/workflows/common-test.yml
with:
mode: global
testMonorepo: true
secrets: inherit
test-local-monorepo:
needs: test-global-monorepo
uses: ./.github/workflows/common-test.yml
with:
mode: local
testMonorepo: true
secrets: inherit