Skip to content

[Snyk] Upgrade webpack from 5.63.0 to 5.89.0 #547

[Snyk] Upgrade webpack from 5.63.0 to 5.89.0

[Snyk] Upgrade webpack from 5.63.0 to 5.89.0 #547

Workflow file for this run

name: Github Actions CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm ci
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
needs: build
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm run format