Fixing relational operators #6
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: Package Extension (Test) | |
| on: | |
| # Trigger on pushes to main branch | |
| push: | |
| branches: [main, master] | |
| # Trigger on pull requests | |
| pull_request: | |
| branches: [main, master] | |
| jobs: | |
| test-package: | |
| name: Test Package | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install vsce | |
| run: npm install -g vsce | |
| - name: Package extension (dry run) | |
| run: vsce package --out test-extension.vsix | |
| - name: List package contents | |
| run: vsce ls | |
| - name: Upload test VSIX | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-extension | |
| path: "test-extension.vsix" |