mirror of https://github.com/nodejs/corepack.git
				
				
				
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			464 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			464 B
		
	
	
	
		
			YAML
		
	
	
	
name: Tests
 | 
						|
 | 
						|
on:
 | 
						|
  push:
 | 
						|
    branches: [master]
 | 
						|
  pull_request:
 | 
						|
    branches: [master]
 | 
						|
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
    strategy:
 | 
						|
      matrix:
 | 
						|
        node-version: [14.x]
 | 
						|
 | 
						|
    runs-on: ubuntu-latest
 | 
						|
 | 
						|
    steps:
 | 
						|
    - uses: actions/checkout@v2
 | 
						|
 | 
						|
    - name: Install Node.js ${{ matrix.node-version }}
 | 
						|
      uses: actions/setup-node@v1
 | 
						|
      with:
 | 
						|
        node-version: ${{ matrix.node-version }}
 | 
						|
 | 
						|
    - run: yarn install --immutable
 | 
						|
    - run: yarn eslint
 | 
						|
    - run: yarn jest
 |