Fixes typo in test-ubuntu.yml #3
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 Ubuntu | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
matrix: | |
node-version: ['23.x', 'latest'] | |
vscode-version: ['1.95.3', 'latest'] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Retrieve VSCode dependency versions | |
id: vscode-versions | |
uses: EcksDy/vscode-version-matrix | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
version: ${{ matrix.vscode-version }} | |
- name: VSCode Details | |
id: output | |
run: | | |
echo "vscode-version-name = ${{ steps.vscode-versions.outputs.vscode-version-name }}" | |
echo "vscode-version = ${{ steps.vscode-versions.outputs.vscode-version }}" | |
echo "released-at = ${{ steps.vscode-versions.outputs.released-at }}" | |
echo "electron-version = ${{ steps.vscode-versions.outputs.electron-version }}" | |
echo "node-version = ${{ steps.vscode-versions.outputs.node-version }}" | |
echo "chromium-version = ${{ steps.vscode-versions.outputs.chromium-version }}" | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- run: npm test |