This repository was archived by the owner on Nov 25, 2025. It is now read-only.
Cache mirror list #690
Workflow file for this run
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, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: npm install | |
| - run: npm run build | |
| - run: npm run typecheck | |
| - run: npm run lint | |
| - run: npm run format:check | |
| - name: package extension | |
| run: | | |
| npx vsce package | |
| ls -lt *.vsix |