Skip to content

Bump webpack from 5.80.0 to 5.81.0 #565

Bump webpack from 5.80.0 to 5.81.0

Bump webpack from 5.80.0 to 5.81.0 #565

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x,16.16]
steps:
- uses: actions/checkout@v3
- name: Use Node.src ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
cd modules/pgn-reader
npm install
npm run build --if-present
npm test
cd ../pgn-viewer
npm install
npm run build
npm run test
env:
CI: true