Skip to content

chore: bump to 0.2.8, update CHANGELOG #23

chore: bump to 0.2.8, update CHANGELOG

chore: bump to 0.2.8, update CHANGELOG #23

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache-dependency-path: |
package-lock.json
webview-ui/package-lock.json
- name: Install dependencies
run: npm ci
- name: Install webview dependencies
run: cd webview-ui && npm ci
- name: Type check (extension)
run: npm run lint
- name: Type check (webview)
run: cd webview-ui && npm run check
- name: Run tests
run: npm test
- name: Build extension
run: npm run build:extension
- name: Build webview
run: npm run build:webview