This repository was archived by the owner on Sep 10, 2025. It is now read-only.
Add deprecated warning. #17
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: Pre-commit | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| workflow_dispatch: | |
| jobs: | |
| build-extensions: | |
| runs-on: [self-hosted, linux] | |
| container: node:23-bookworm-slim | |
| steps: | |
| - name: Check out repository code | |
| uses: actions/checkout@v2 | |
| - name: Enable corepack | |
| run: corepack enable | |
| - name: yarn version | |
| run: yarn -v && node -v | |
| - name: Build the package | |
| run: yarn install && yarn run package | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: debug-extension | |
| path: ./*.vsix |