chore: bump @types/node from 20.16.9 to 22.9.1 #4895
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
release: | |
types: | |
- created | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run common build steps | |
uses: ./.github/actions/common-build | |
release-vsstudio-marketplace: | |
runs-on: ubuntu-latest | |
if: success() && startsWith( github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run common build steps | |
uses: ./.github/actions/common-build | |
- name: Publish Visual Studio Marketplace | |
run: | | |
if [ "${{ github.event_name }}" == "release" ] && [ "${{ github.event.release.prerelease }}" == "true" ]; then | |
npm run deploy-vscode -- --pre-release | |
else | |
npm run deploy-vscode | |
fi | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
- name: Send Slack notification | |
if: ${{ always() }} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
text: "Tag: ${{ github.ref_name }} release to Visual Studio Marketplace status: ${{ job.status == 'success' && 'succeeded' || 'failed' }} :${{ job.status == 'success' && 'tada' || 'disappointed' }}:" | |
release-openvsx-marketplace: | |
runs-on: ubuntu-latest | |
if: success() && startsWith( github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run common build steps | |
uses: ./.github/actions/common-build | |
- name: Publish OpenVSX Marketplace | |
run: | | |
if [ "${{ github.event_name }}" == "release" ] && [ "${{ github.event.release.prerelease }}" == "true" ]; then | |
npm run deploy-openvsx -- --pre-release | |
else | |
npm run deploy-openvsx | |
fi | |
env: | |
OVSX_PAT: ${{ secrets.OVSX_PAT }} | |
- name: Send Slack notification | |
if: ${{ always() }} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
uses: 8398a7/action-slack@v3 | |
with: | |
status: ${{ job.status }} | |
text: "Tag: ${{ github.ref_name }} release to openvsx marketplace status: ${{ job.status == 'success' && 'succeeded' || 'failed' }} :${{ job.status == 'success' && 'tada' || 'disappointed' }}:" | |