mirror of
				https://github.com/actions/download-artifact.git
				synced 2025-11-04 02:43:41 +00:00 
			
		
		
		
	Signed-off-by: Matthieu MOREL <mmorel-35@users.noreply.github.com> Co-Authored-By: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-Authored-By: Matthieu MOREL <mmorel-35@users.noreply.github.com> Co-Authored-By: MOREL Matthieu <matthieu.morel@cnp.fr>
		
			
				
	
	
		
			23 lines
		
	
	
		
			401 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			401 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Licensed
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches:
 | 
						|
      - main
 | 
						|
  pull_request:
 | 
						|
    branches:
 | 
						|
      - main
 | 
						|
 | 
						|
jobs:
 | 
						|
  test:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    name: Check licenses status
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v2
 | 
						|
      - uses: jonabc/setup-licensed@v1
 | 
						|
        with:
 | 
						|
          version: '3.x'
 | 
						|
          github_token: ${{ secrets.GITHUB_TOKEN }}
 | 
						|
      - run: npm install
 | 
						|
      - run: licensed status
 |