You've already forked matrix-react-sdk
							
							
				mirror of
				https://github.com/matrix-org/matrix-react-sdk.git
				synced 2025-10-31 01:45:39 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			727 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			727 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: Test coverage
 | |
| on:
 | |
|   pull_request: {}
 | |
|   push:
 | |
|     branches: [develop, main, master]
 | |
| jobs:
 | |
|   test-coverage:
 | |
|     runs-on: ubuntu-latest
 | |
|     env:
 | |
|       # This must be set for fetchdep.sh to get the right branch
 | |
|       PR_NUMBER: ${{github.event.number}}
 | |
|     steps:
 | |
|       - name: Checkout code
 | |
|         uses: actions/checkout@v2
 | |
| 
 | |
|       - name: Yarn cache
 | |
|         uses: c-hive/gha-yarn-cache@v2
 | |
| 
 | |
|       - name: Install Deps
 | |
|         run: "./scripts/ci/install-deps.sh --ignore-scripts"
 | |
| 
 | |
|       - name: Run tests with coverage
 | |
|         run: "yarn install && yarn reskindex && yarn coverage"
 | |
| 
 | |
|       - name: Upload coverage
 | |
|         uses: codecov/codecov-action@v2
 | |
|         with:
 | |
|           fail_ci_if_error: false
 | |
|           verbose: true
 |