Skip to content

Update CHANGELOG.md with the new release information #4

Update CHANGELOG.md with the new release information

Update CHANGELOG.md with the new release information #4

Workflow file for this run

name: Node.js CI
on:
push:
tags:
- '*'
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node-version: [18.x, 20.x, 21.x, 22.x, 23.x]
webpack-version: [5]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install webpack ${{ matrix.webpack-version }}
run: npm i webpack@${{ matrix.webpack-version }}
- name: Run tests for webpack ${{ matrix.webpack-version }}
run: export NODE_OPTIONS=--openssl-legacy-provider && npm test