mirror of
				https://github.com/theoludwig/programming-challenges.git
				synced 2025-09-11 23:11:21 +02:00 
			
		
		
		
	fix(cli): add timeout for running solutions
This commit is contained in:
		
							
								
								
									
										45
									
								
								.github/workflows/challenges.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										45
									
								
								.github/workflows/challenges.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,45 @@
 | 
			
		||||
name: 'challenges'
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    branches: [master]
 | 
			
		||||
  pull_request:
 | 
			
		||||
    branches: [master]
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  test-solutions:
 | 
			
		||||
    runs-on: 'ubuntu-latest'
 | 
			
		||||
    steps:
 | 
			
		||||
      - uses: 'actions/checkout@v2'
 | 
			
		||||
        with:
 | 
			
		||||
          fetch-depth: 0
 | 
			
		||||
 | 
			
		||||
      - name: 'Use Docker'
 | 
			
		||||
        uses: 'actions-hub/docker/cli@master'
 | 
			
		||||
        env:
 | 
			
		||||
          SKIP_LOGIN: true
 | 
			
		||||
 | 
			
		||||
      - name: 'Use Node.js'
 | 
			
		||||
        uses: 'actions/setup-node@v2.5.0'
 | 
			
		||||
        with:
 | 
			
		||||
          node-version: '16.x'
 | 
			
		||||
          cache: 'npm'
 | 
			
		||||
 | 
			
		||||
      - name: 'Install'
 | 
			
		||||
        run: 'npm install'
 | 
			
		||||
 | 
			
		||||
      - name: 'Build'
 | 
			
		||||
        run: 'npm run build'
 | 
			
		||||
 | 
			
		||||
      - name: 'Install programming-challenges'
 | 
			
		||||
        run: 'npm install --global'
 | 
			
		||||
 | 
			
		||||
      - uses: 'nrwl/last-successful-commit-action@v1'
 | 
			
		||||
        id: 'last_successful_commit'
 | 
			
		||||
        with:
 | 
			
		||||
          branch: 'master'
 | 
			
		||||
          workflow_id: 'ci.yml'
 | 
			
		||||
          github_token: ${{ secrets.GITHUB_TOKEN }}
 | 
			
		||||
 | 
			
		||||
      - name: 'Test'
 | 
			
		||||
        run: 'programming-challenges run test --affected --ci --base=${{ steps.last_successful_commit.outputs.commit_hash }}'
 | 
			
		||||
@@ -1,4 +1,4 @@
 | 
			
		||||
name: 'ci'
 | 
			
		||||
name: 'cli'
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
@@ -64,40 +64,3 @@ jobs:
 | 
			
		||||
 | 
			
		||||
      - name: 'Test'
 | 
			
		||||
        run: 'npm run test'
 | 
			
		||||
 | 
			
		||||
  challenges:
 | 
			
		||||
    runs-on: 'ubuntu-latest'
 | 
			
		||||
    steps:
 | 
			
		||||
      - uses: 'actions/checkout@v2'
 | 
			
		||||
        with:
 | 
			
		||||
          fetch-depth: 0
 | 
			
		||||
 | 
			
		||||
      - name: 'Use Docker'
 | 
			
		||||
        uses: 'actions-hub/docker/cli@master'
 | 
			
		||||
        env:
 | 
			
		||||
          SKIP_LOGIN: true
 | 
			
		||||
 | 
			
		||||
      - name: 'Use Node.js'
 | 
			
		||||
        uses: 'actions/setup-node@v2.5.0'
 | 
			
		||||
        with:
 | 
			
		||||
          node-version: '16.x'
 | 
			
		||||
          cache: 'npm'
 | 
			
		||||
 | 
			
		||||
      - name: 'Install'
 | 
			
		||||
        run: 'npm install'
 | 
			
		||||
 | 
			
		||||
      - name: 'Build'
 | 
			
		||||
        run: 'npm run build'
 | 
			
		||||
 | 
			
		||||
      - name: 'Install programming-challenges'
 | 
			
		||||
        run: 'npm install --global'
 | 
			
		||||
 | 
			
		||||
      - uses: 'nrwl/last-successful-commit-action@v1'
 | 
			
		||||
        id: 'last_successful_commit'
 | 
			
		||||
        with:
 | 
			
		||||
          branch: 'master'
 | 
			
		||||
          workflow_id: 'ci.yml'
 | 
			
		||||
          github_token: ${{ secrets.GITHUB_TOKEN }}
 | 
			
		||||
 | 
			
		||||
      - name: 'Test'
 | 
			
		||||
        run: 'programming-challenges run test --affected --ci --base=${{ steps.last_successful_commit.outputs.commit_hash }}'
 | 
			
		||||
		Reference in New Issue
	
	Block a user