Create webpack.yml

This commit is contained in:
Andras Schmelczer 2023-05-20 10:29:46 +01:00 committed by GitHub
parent 058d6014b7
commit 50720fae4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
.github/workflows/webpack.yml vendored Normal file
View file

@ -0,0 +1,23 @@
name: NodeJS with Webpack
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 19.x
- name: Build
run: |
npm ci && npm run build