RAB: VScode is not showing all operations while converting to ADD on Windows VSCode #157
Workflow file for this run
This file contains 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 | |
on: | |
push: | |
branches: [ "main", "develop", "release/**" ] | |
pull_request: | |
branches: [ "main", "develop", "release/**" ] | |
jobs: | |
package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build --if-present | |
- name: Test | |
run: npm test | |
- name: Package Extension | |
run: npm run package | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-${{ github.sha }} | |
path: oic-rapid-adapter-builder-*.vsix |