You've already forked matrix-react-sdk
							
							
				mirror of
				https://github.com/matrix-org/matrix-react-sdk.git
				synced 2025-11-04 11:51:45 +03:00 
			
		
		
		
	This changes the nesting style because some CI / CD systems do not allow moving to a directory above the checkout for the primary repo (`react-sdk` in this case). Part of https://github.com/vector-im/element-web/issues/12624
		
			
				
	
	
		
			13 lines
		
	
	
		
			284 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			284 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
#
 | 
						|
# script which is run by the CI build (after `yarn test`).
 | 
						|
#
 | 
						|
# clones element-web develop and runs the tests against our version of react-sdk.
 | 
						|
 | 
						|
set -ev
 | 
						|
 | 
						|
scripts/ci/layered.sh
 | 
						|
cd element-web
 | 
						|
yarn build:genfiles # so the tests can run. Faster version of `build`
 | 
						|
yarn test
 |