mirror of
https://github.com/Redocly/redoc.git
synced 2025-09-24 04:56:39 +03:00
Create webpack.yml
This commit is contained in:
parent
121bf640fa
commit
f0dabfa0b8
30
.github/workflows/webpack.yml
vendored
Normal file
30
.github/workflows/webpack.yml
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
name: Build with Webpack
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x, 20.x, 22.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 bundle:standalone
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
path: |
|
||||
./dist
|
||||
retention-days: 1
|
Loading…
Reference in New Issue
Block a user