mirror of
				https://github.com/actions/setup-node.git
				synced 2025-10-31 08:53:33 +00:00 
			
		
		
		
	Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| name: proxy
 | |
| 
 | |
| on:
 | |
|   pull_request:
 | |
|     paths-ignore:
 | |
|       - '**.md'
 | |
|   push:
 | |
|     branches:
 | |
|       - main
 | |
|       - releases/*
 | |
|     paths-ignore:
 | |
|       - '**.md'
 | |
| 
 | |
| jobs:
 | |
|   test-proxy:
 | |
|     runs-on: ubuntu-latest
 | |
|     container:
 | |
|       image: ubuntu:latest
 | |
|       options: --dns 127.0.0.1
 | |
|     services:
 | |
|       squid-proxy:
 | |
|         image: ubuntu/squid:latest
 | |
|         ports:
 | |
|           - 3128:3128
 | |
|     env:
 | |
|       https_proxy: http://squid-proxy:3128
 | |
|     steps:
 | |
|       - uses: actions/checkout@v5
 | |
|       - name: Clear tool cache
 | |
|         run: rm -rf $RUNNER_TOOL_CACHE/*
 | |
|       - name: Setup node 14
 | |
|         uses: ./
 | |
|         with:
 | |
|           node-version: 14.x
 | |
|       - name: Verify node and npm
 | |
|         run: __tests__/verify-node.sh 14
 | |
| 
 | |
|   test-bypass-proxy:
 | |
|     runs-on: ubuntu-latest
 | |
|     env:
 | |
|       https_proxy: http://no-such-proxy:3128
 | |
|       no_proxy: api.github.com,github.com,nodejs.org,registry.npmjs.org,*.s3.amazonaws.com,s3.amazonaws.com
 | |
|     steps:
 | |
|       - uses: actions/checkout@v5
 | |
|       - name: Clear tool cache
 | |
|         run: rm -rf $RUNNER_TOOL_CACHE/*
 | |
|       - name: Setup node 11
 | |
|         uses: ./
 | |
|         with:
 | |
|           node-version: 11
 | |
|       - name: Verify node and npm
 | |
|         run: __tests__/verify-node.sh 11
 |