Skip to content

Prop editor

Prop editor #22

Workflow file for this run

name: Build with Webpack
on:
pull_request:
branches:
- mainline
jobs:
build:
strategy:
matrix:
node-version:
- 16.x
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npx webpack --mode=development