Skip to content

Bump version to 0.3.11 #38

Bump version to 0.3.11

Bump version to 0.3.11 #38

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [18.x, 20.x]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
continue-on-error: true
- name: Build extension
run: npm run package
- name: Package extension
run: npx vsce package
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '20.x'
- name: Upload VSIX artifact
uses: actions/upload-artifact@v4
if: matrix.os == 'ubuntu-latest' && matrix.node-version == '20.x'
with:
name: vsix-package
path: '*.vsix'
retention-days: 30