Skip to content

Commit

Permalink
Merge branch 'main' into correct-publicPath-issues-in-production
Browse files Browse the repository at this point in the history
  • Loading branch information
WeatherfordAaron authored Aug 26, 2024
2 parents f61b907 + 82fe4eb commit cc7fc44
Show file tree
Hide file tree
Showing 10 changed files with 23,959 additions and 5,443 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: NodeJS with Webpack

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]

steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
if [ "${{ matrix.node-version }}" == "18.x" ]; then
export NODE_OPTIONS=--openssl-legacy-provider
fi
npm install
npx webpack
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.15.0
18.20.2
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodejs 18.20.2
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit cc7fc44

Please sign in to comment.