Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork0
Add Azure DevOps Server (on-premises) compatibility#87
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
name:Nightly Integration Tests | |
on: | |
schedule: | |
-cron:'0 2 * * *'# Daily at 02:00 UTC | |
workflow_dispatch:{} | |
pull_request: | |
branches:[main] | |
types:[opened, synchronize, reopened] | |
jobs: | |
integration-tests: | |
runs-on:ubuntu-latest | |
timeout-minutes:60 | |
steps: | |
-name:Checkout | |
uses:actions/checkout@v4 | |
-name:Setup Node.js | |
uses:actions/setup-node@v4 | |
with: | |
node-version:'20.x' | |
-name:Install system dependencies for headless testing | |
run:| | |
sudo apt-get update | |
sudo apt-get install -y xvfb | |
-name:Install dependencies | |
run:npm ci | |
-name:Build extension and webview | |
run:npm run build:all | |
-name:Run integration tests with virtual display | |
run:xvfb-run -a npm run test:integration | |
env: | |
CI:true |