Skip to content

Test with real npm

Test with real npm #36

name: Test with real npm
on:
workflow_dispatch:
inputs:
mode:
description: "'global' (real NPM installed globally) or 'local' (real NPM installed locally) "
type: choice
required: true
options:
- global
- local
testMonorepo:
description: "Test monorepo by specifying folder in config"
type: boolean
default: false
permissions:
id-token: write
contents: write
jobs:
test:
uses: ./.github/workflows/common-test.yml
with:
mode: ${{ github.event.inputs.mode }}
testMonorepo: ${{ github.event.inputs.testMonorepo }}
secrets: inherit