Skip to content

CI for build, test, upload #2

CI for build, test, upload

CI for build, test, upload #2

Workflow file for this run

name: "Build"
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run test:unit # Can't run the UI tests without a UI
- run: npm install -g @vscode/vsce
- run: vsce package
- name: Publish VS Code extension artifact
uses: actions/upload-artifact@v4
with:
name: maestro-workbench-extension
path: maestro-workbench-*.vsix
compression-level: 0
retention-days: 14