Skip to content

Bump webpack from 5.95.0 to 5.96.1 #980

Bump webpack from 5.95.0 to 5.96.1

Bump webpack from 5.95.0 to 5.96.1 #980

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