Bump braces from 3.0.2 to 3.0.3 #287
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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
strategy: | |
matrix: | |
node-version: [18] | |
os: [windows-latest, ubuntu-22.04] # macos-latest, | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: NPM Install | |
run: npm install | |
- run: npm run compile | |
- name: Run extension integration tests in head-less VS Code | |
if: success() | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: npm test | |
- name: Package extension | |
if: success() | |
run: | | |
npm install -g vsce | |
vsce package | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
if: success() && github.ref == 'refs/heads/master' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: NPM Install | |
run: npm install | |
- name: Publish extension to marketplace | |
run: | | |
npm install -g @vscode/vsce | |
vsce publish -p $VSCE_TOKEN | |
env: | |
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }} | |
continue-on-error: true |