feat(participant): Report errors to telemetry VSCODE-605 #1955
Workflow file for this run
This file contains 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: Test and Build | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*.*.*' | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
test-and-build: | |
name: Test and Build | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-2019, macos-latest] | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js Environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.16.0 | |
- name: Run tests and build | |
uses: ./.github/workflows/actions/test-and-build | |
with: | |
SEGMENT_KEY: ${{ secrets.SEGMENT_KEY_PROD }} | |
MONGODB_DOCS_CHATBOT_BASE_URI: ${{ secrets.MONGODB_DOCS_CHATBOT_BASE_URI_PROD }} | |
ARTIFACTORY_HOST: ${{ secrets.ARTIFACTORY_HOST }} | |
ARTIFACTORY_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} | |
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} | |
GARASIGN_PASSWORD: ${{ secrets.GARASIGN_PASSWORD }} | |
GARASIGN_USERNAME: ${{ secrets.GARASIGN_USERNAME }} | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} |