Skip to content

fix: upgrade webpack from 5.67.0 to 5.91.0 #217

fix: upgrade webpack from 5.67.0 to 5.91.0

fix: upgrade webpack from 5.67.0 to 5.91.0 #217

Workflow file for this run

name: Build & Test
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node:
- "14.x"
- "16.x"
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{matrix.node}}
- run: npm ci
- run: npm run lint -- --cache
test:
needs: lint
runs-on: ${{matrix.os}}
strategy:
matrix:
node:
- "14.x"
- "16.x"
os:
- ubuntu-latest
- macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{matrix.node}}
- run: npm ci
- run: npm run test
build:
needs: test
runs-on: ${{matrix.os}}
strategy:
matrix:
node:
- "14.x"
- "16.x"
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{matrix.node}}
- run: npm ci
- run: npm run build