Skip to content

Bump version to 0.1.2 #5

Bump version to 0.1.2

Bump version to 0.1.2 #5

Workflow file for this run

name: Lint and build extension
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 21.x
- name: Install extension dependencies
run: npm ci
- name: Run ESLint previous to building
run: npx eslint src --ext ts --max-warnings 0
- name: Build and package the extension
run: npx -p @vscode/vsce -c 'vsce package'