Bump @typescript-eslint/eslint-plugin from 5.30.7 to 6.12.0 #362
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: VS Code extension CI/CD | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
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: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16.x | |
- name: Install dependencies | |
run: | | |
npm ci | |
npm run test-compile | |
- name: Run tests | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: npm test | |
- name: Clean out folder | |
uses: JesseTG/[email protected] | |
with: | |
path: ${{ github.workspace }}/out | |
- name: Build extension | |
run: | | |
npm run compile | |
npm run package | |
- name: Publish | |
if: success() && startsWith(github.ref, 'refs/tags/v') && matrix.os == 'ubuntu-latest' | |
run: npm run deploy | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} |