mirror of
				https://github.com/excalidraw/excalidraw.git
				synced 2025-11-03 20:34:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			338 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			338 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: Tests
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: master
 | 
						|
 | 
						|
jobs:
 | 
						|
  test:
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
    steps:
 | 
						|
      - uses: actions/checkout@v4
 | 
						|
      - name: Setup Node.js 18.x
 | 
						|
        uses: actions/setup-node@v4
 | 
						|
        with:
 | 
						|
          node-version: 18.x
 | 
						|
      - name: Install and test
 | 
						|
        run: |
 | 
						|
          yarn install
 | 
						|
          yarn test:app
 |