Custom logger, seperated Webpack conf, Webpack for MainProc, new npm srcipt and more. #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: NodeJS with Webpack | |
on: | |
push: | |
branches: [ "v4" ] | |
pull_request: | |
branches: [ "v4" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Build | |
run: | | |
npm install | |
npm run build | |
npm run release | |
unzip release.zip -d ./artifact_content | |
rm release.zip | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Release | |
path: ./artifact_content/ |