Skip to content

Bump webpack from 5.93.0 to 5.94.0 #31

Bump webpack from 5.93.0 to 5.94.0

Bump webpack from 5.93.0 to 5.94.0 #31

Workflow file for this run

name: Build Package
on:
push:
branches:
- '**'
jobs:
build-package:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Print NPM version 🌎
run: npm --version
- name: Install the dependencies 🧱
run: npm ci
- name: Test the package 🔧
run: npm run test
- name: Build the package 🔨
run: |
npm run build
npm pack
- name: Upload artifact 🗄️
uses: actions/upload-artifact@v4
with:
name: npm-package
path: ./*.tgz
retention-days: 7