36 lines
		
	
	
		
			688 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			688 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: ci
 | |
| 
 | |
| on: push
 | |
| 
 | |
| jobs:
 | |
|   ci:
 | |
|     runs-on: ubuntu-latest
 | |
| 
 | |
|     steps:
 | |
|       - name: Checkout
 | |
|         uses: actions/checkout@master
 | |
|         with:
 | |
|           fetch-depth: 0
 | |
| 
 | |
|       - name: Setup node env
 | |
|         uses: actions/setup-node@v2.3.2
 | |
|         with:
 | |
|           node-version: 14
 | |
| 
 | |
|       - name: Cache node_modules
 | |
|         uses: actions/cache@v2
 | |
|         with:
 | |
|           path: ~/.npm
 | |
|           key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
 | |
|           restore-keys: |
 | |
|             ${{ runner.os }}-node-            
 | |
| 
 | |
|       - name: Install dependencies
 | |
|         run: npm ci
 | |
| 
 | |
|       - name: Run linters
 | |
|         run: npm run lint
 | |
| 
 | |
|       - name: Build the app
 | |
|         run: npm run build
 |