Skip to content

fix: Update codeUtil.ts to download vscode for linux-arm64 (#1161) #1917

fix: Update codeUtil.ts to download vscode for linux-arm64 (#1161)

fix: Update codeUtil.ts to download vscode for linux-arm64 (#1161) #1917

Workflow file for this run

name: Main CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
test:
name: ${{ matrix.version }}
strategy:
fail-fast: false
matrix:
version: [ min, 1.85.2, max ]
uses: ./.github/workflows/template-main.yaml
with:
version: ${{ matrix.version }}
check:
if: always()
runs-on: ubuntu-latest
name: Status Check
needs: [ test ]
steps:
- name: Test Matrix Result
run: |
echo result = ${{ needs.test.result }}
- name: Status Check - success
if: ${{ needs.test.result == 'success' }}
run: |
echo "All tests successfully completed!"
exit 0
- name: Status Check - failure
if: ${{ needs.test.result != 'success' }}
run: |
echo "Status Check failed!"
exit 1