mirror of
				https://github.com/mastermindzh/rickvanlieshout.com
				synced 2025-11-04 10:40:09 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			284 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			284 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
kind: pipeline
 | 
						|
type: docker
 | 
						|
name: default
 | 
						|
 | 
						|
steps:
 | 
						|
  - name: install
 | 
						|
    image: node:19.9.0
 | 
						|
    commands:
 | 
						|
      - npm install
 | 
						|
 | 
						|
  - name: test
 | 
						|
    image: node:19.9.0
 | 
						|
    commands:
 | 
						|
      - npm run test:coverage
 | 
						|
 | 
						|
  - name: build
 | 
						|
    image: node:19.9.0
 | 
						|
    commands:
 | 
						|
      - npm run build
 |