mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-11-04 10:11:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			244 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			244 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
#
 | 
						|
# script which is run by the CI build (after `yarn test`).
 | 
						|
#
 | 
						|
# clones riot-web develop and runs the tests against our version of react-sdk.
 | 
						|
 | 
						|
set -ev
 | 
						|
 | 
						|
RIOT_WEB_DIR=riot-web
 | 
						|
 | 
						|
scripts/ci/build.sh
 | 
						|
pushd "$RIOT_WEB_DIR"
 | 
						|
yarn test
 | 
						|
popd
 |