deps: update dependency @vscode/codicons to ^0.0.36 #274
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: CI | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ macos-latest, ubuntu-latest, windows-latest ] | |
node-version: [ 20 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Execute tests (Linux) | |
run: xvfb-run -a npm run all | |
if: runner.os == 'Linux' | |
- name: Execute tests (MacOS, Windows) | |
run: npm run all | |
if: runner.os != 'Linux' | |
- name: Dry-run release | |
run: npx @vscode/vsce ls |