chore: bump to 0.2.8, update CHANGELOG #23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |