Create webpack.yml
This commit is contained in:
parent
058d6014b7
commit
50720fae4c
1 changed files with 23 additions and 0 deletions
23
.github/workflows/webpack.yml
vendored
Normal file
23
.github/workflows/webpack.yml
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue