mirror of
https://github.com/github/codeql-action.git
synced 2026-04-30 10:50:14 +00:00
30ecc82e64
Lists are easier to modify
22 lines
516 B
YAML
22 lines
516 B
YAML
name: "Proxy test"
|
|
description: "Tests using a proxy specified by the https_proxy environment variable"
|
|
versions:
|
|
- linked
|
|
- nightly-latest
|
|
container:
|
|
image: ubuntu:22.04
|
|
services:
|
|
squid-proxy:
|
|
image: ubuntu/squid:latest
|
|
ports:
|
|
- 3128:3128
|
|
env:
|
|
https_proxy: http://squid-proxy:3128
|
|
CODEQL_ACTION_TOLERATE_MISSING_GIT_VERSION: true
|
|
steps:
|
|
- uses: ./../action/init
|
|
with:
|
|
languages: javascript
|
|
tools: ${{ steps.prepare-test.outputs.tools-url }}
|
|
- uses: ./../action/analyze
|