Skip to content

[Snyk] Security upgrade webpack from 5.89.0 to 5.94.0 #595

[Snyk] Security upgrade webpack from 5.89.0 to 5.94.0

[Snyk] Security upgrade webpack from 5.89.0 to 5.94.0 #595

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: [18.x]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
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: [18.x]
needs: build
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm run format