From 50720fae4c61749128d8a384b895213ed59955a4 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 20 May 2023 10:29:46 +0100 Subject: [PATCH] Create webpack.yml --- .github/workflows/webpack.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/webpack.yml diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml new file mode 100644 index 0000000..c238a05 --- /dev/null +++ b/.github/workflows/webpack.yml @@ -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