Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Compile
run: npm run compile

- name: Run unit tests
run: npm run test:unit

- name: Run integration tests (direct client)
run: docker compose run --rm test-direct-client
working-directory: tests

- name: Run integration tests (proxy client)
run: docker compose run --rm test-proxy-client
working-directory: tests

- name: Cleanup Docker
if: always()
run: docker compose down
working-directory: tests
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
Notable changes will be documented here.

## [0.38.0]
- ProxyAgent per proxyURL and lookupProxyAuthorization per connection ([microsoft/vscode-proxy-agent#84](https://github.com/microsoft/vscode-proxy-agent/pull/84))
- Add GitHub CI workflow

## [0.37.0]
- Filter expired certificates when loading from Node.js ([microsoft/vscode#284800](https://github.com/microsoft/vscode/issues/284800))

Expand Down
Loading