Bump webpack from 5.95.0 to 5.96.1 #1335
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: "NPM Lint & Build" | |
on: | |
pull_request: | |
push: | |
jobs: | |
lint: | |
name: "Lint & Build" | |
runs-on: ${{ matrix.operating-system }} | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
node-version: | |
- "18" | |
operating-system: | |
- "ubuntu-latest" | |
experimental: | |
- false | |
include: | |
- node-version: "19" | |
operating-system: "ubuntu-latest" | |
experimental: true | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "NPM install" | |
uses: ./.github/actions/npm | |
with: | |
node-version: '${{ matrix.node-version }}' | |
- name: "Lint" | |
run: npm run lint -- --format unix | |
- name: "Build" | |
run: npm run build |