mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-30 21:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			469 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			469 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Lint
 | |
| 
 | |
| on:
 | |
|   push:
 | |
|     branches:
 | |
|       - master
 | |
|       - develop
 | |
|   pull_request:
 | |
| 
 | |
| jobs:
 | |
|   lint:
 | |
|     runs-on: ubuntu-latest
 | |
|     steps:
 | |
|     - uses: actions/checkout@v2
 | |
|       with:
 | |
|         submodules: true
 | |
|     - uses: actions/setup-node@v1
 | |
|       with:
 | |
|         node-version: 12.x
 | |
|     - uses: actions/cache@v2
 | |
|       with:
 | |
|         path: '**/node_modules'
 | |
|         key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
 | |
|     - run: yarn install
 | |
|     - run: yarn lint
 |