mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	After adding [postgres service](https://github.com/Unleash/unleash/pull/7790) , we also need to configure the url to database. This adds it.
		
			
				
	
	
		
			14 lines
		
	
	
		
			138 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			138 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -e
 | |
| 
 | |
| yarn run lint
 | |
| yarn run test
 | |
| 
 | |
| cd frontend
 | |
| yarn
 | |
| yarn run ts:check
 | |
| yarn run lint:check
 | |
| yarn run fmt:check
 | |
| yarn run test
 |