mirror of
				https://github.com/actions/setup-node.git
				synced 2025-10-31 08:04:00 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			335 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			335 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
| workflow "CI" {
 | |
|   on = "push"
 | |
|   resolves = ["Format", "Build"]
 | |
| }
 | |
| 
 | |
| action "Dependencies" {
 | |
|   uses = "actions/npm@v2.0.0"
 | |
|   args = "ci"
 | |
| }
 | |
| 
 | |
| action "Build" {
 | |
|   needs = "Dependencies"
 | |
|   uses = "actions/npm@v2.0.0"
 | |
|   args = "run build"
 | |
| }
 | |
| 
 | |
| action "Format" {
 | |
|   needs = "Dependencies"
 | |
|   uses = "actions/npm@v2.0.0"
 | |
|   args = "run format-check"
 | |
| } | 
