Skip to content

Bump webpack-dev-server from 4.15.1 to 5.0.2 in /graph-tutorial #327

Bump webpack-dev-server from 4.15.1 to 5.0.2 in /graph-tutorial

Bump webpack-dev-server from 4.15.1 to 5.0.2 in /graph-tutorial #327

Workflow file for this run

name: Node.js build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
defaults:
run:
working-directory: graph-tutorial
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Copy settings file
run: |
cp example.env .env
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Build
run: yarn build