Skip to content

Commit

Permalink
Merge pull request #2 from adrogin/webpack-workflow
Browse files Browse the repository at this point in the history
Setup workflow for JS test and packing
  • Loading branch information
adrogin authored Jan 9, 2024
2 parents a4042fa + 76c96ed commit c1b3642
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: NodeJS with Webpack

on:
push:
branches: [ $default-branch ]
pull_request:
branches: [ $default-branch ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x

- name: Build
run: |
npm install
npx webpack

0 comments on commit c1b3642

Please sign in to comment.