Skip to content

Bump @typescript-eslint/eslint-plugin from 7.16.0 to 8.13.0 #979

Bump @typescript-eslint/eslint-plugin from 7.16.0 to 8.13.0

Bump @typescript-eslint/eslint-plugin from 7.16.0 to 8.13.0 #979

Workflow file for this run

name: NodeJS with Webpack
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
name: Build and Package
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Install NPM Dependencies
run: |
npm install
npm install -g vsce
- name: Build and Package
run: |
npx webpack
vsce package
- name: Upload VSIX
uses: actions/upload-artifact@v4
with:
name: VSIX
path: ./*.vsix
if-no-files-found: error