Bump @types/node from 25.9.1 to 26.1.1 #214
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: build | |
| on: | |
| release: | |
| types: | |
| - published | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v7 | |
| - name: Update version | |
| if: ${{ github.event_name == 'release' }} | |
| run: npm version --no-git-tag-version ${{ github.ref_name }} | |
| - name: NPM install | |
| run: npm ci | |
| - name: Compile | |
| run: npm run compile | |
| - name: Compile web | |
| run: npm run compile-web | |
| - name: Package vscode extension | |
| run: npm run package | |
| - name: Publish to marketplace | |
| if: ${{ github.event_name == 'release' }} | |
| env: | |
| VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
| run: npm run deploy |