Skip to content

chore: refactor CICD #40

chore: refactor CICD

chore: refactor CICD #40

name: Test with real npm
run-name: Test with real npm: mode=${{ github.event.inputs.mode }}, testMonorepo=${{ github.event.inputs.testMonorepo }}

Check failure on line 3 in .github/workflows/test-with-real-npm.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test-with-real-npm.yml

Invalid workflow file

You have an error in your yaml syntax on line 3
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