mirror of
				https://github.com/pnpm/action-setup.git
				synced 2025-11-04 19:58:21 +08:00 
			
		
		
		
	Inspect isPost
This commit is contained in:
		@@ -26,3 +26,4 @@ inputs:
 | 
			
		||||
runs:
 | 
			
		||||
  using: node12
 | 
			
		||||
  main: dist/index.js
 | 
			
		||||
  post: dist/index.js
 | 
			
		||||
 
 | 
			
		||||
@@ -1,10 +1,15 @@
 | 
			
		||||
import { setFailed } from '@actions/core'
 | 
			
		||||
import { setFailed, getState, debug } from '@actions/core'
 | 
			
		||||
import getInputs from './inputs'
 | 
			
		||||
import setOutputs from './outputs'
 | 
			
		||||
import installPnpm from './install-pnpm'
 | 
			
		||||
import pnpmInstall from './pnpm-install'
 | 
			
		||||
 | 
			
		||||
async function main() {
 | 
			
		||||
  const isPost = getState('isPost')
 | 
			
		||||
  debug(JSON.stringify(isPost))
 | 
			
		||||
  if (isPost) {
 | 
			
		||||
    return
 | 
			
		||||
  }
 | 
			
		||||
  const inputs = getInputs()
 | 
			
		||||
  await installPnpm(inputs)
 | 
			
		||||
  console.log('Installation Completed!')
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user