Skip to content

Release v1.9.0: fix scroll jump, Enter-to-next-cell, multi row/column… #14

Release v1.9.0: fix scroll jump, Enter-to-next-cell, multi row/column…

Release v1.9.0: fix scroll jump, Enter-to-next-cell, multi row/column… #14

Workflow file for this run

name: Publish to VS Code Marketplace
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Compile
run: npm run compile
- name: Publish to Marketplace
run: npx @vscode/vsce publish --pat ${{ secrets.VSCE_PAT }}