Skip to content

Dependencies Updated (https://bit.ly/app-dependency-update) (#339) #633

Dependencies Updated (https://bit.ly/app-dependency-update) (#339)

Dependencies Updated (https://bit.ly/app-dependency-update) (#339) #633

Workflow file for this run

name: NodeJS with Webpack
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
#node-version: [12.x, 14.x, 16.x]
node-version: [ 18.x ]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm test -- --reporters=default
- name: Build
run: npx webpack --config webpack.prod.config.js