build(deps-dev): bump tsx from 4.17.0 to 4.18.0 #230
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
actions: read | |
checks: write | |
jobs: | |
build: | |
name: Build and Test | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
vscode-version: ['stable', 'insiders'] | |
vscode-platform: ['desktop'] | |
runs-on: ${{ matrix.os }} | |
env: | |
VSCODE_TEST_VERSION: ${{matrix.vscode-version}} | |
VSCODE_TEST_PLATFORM: ${{matrix.vscode-platform}} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: npm install | |
- name: Compile | |
run: npm run compile:test | |
- name: Print Test Config | |
run: node ./.vscode-test.mjs | |
env: | |
VSCODE_CONFIG_LOG: true | |
- name: Run Tests (Linux) | |
run: xvfb-run -a npm test | |
if: runner.os == 'Linux' | |
- name: Run Tests (Win/MacOS) | |
run: npm test | |
if: runner.os != 'Linux' | |
- name: Run Linter | |
if: always() | |
run: npm run lint | |
- uses: dorny/test-reporter@v1 | |
if: always() | |
with: | |
name: VS Code Test Results (${{matrix.os}}, ${{matrix.vscode-version}}, ${{matrix.vscode-platform}}) | |
path: 'test-results/*.json' | |
reporter: mocha-json |