Skip to content

Commit

Permalink
Merge branch 'master' into fix/123_remove_extra-margin-top_table_cont…
Browse files Browse the repository at this point in the history
…ent_on_right
  • Loading branch information
tbouffard authored Sep 4, 2024
2 parents 78ecc31 + 413326d commit df47816
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build-bundle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Build bundle

on:
push:
branches:
- master
paths:
- 'gulpfile.js'
- 'package.json'
- 'package-lock.json'
- 'gulp.d/**/*'
- 'src/**/*'
- 'preview-src/**/*'
- '.github/actions/build-setup/**/*'
- '.github/workflows/build-bundle.yml'
pull_request:
branches:
- master
paths:
- 'gulpfile.js'
- 'package.json'
- 'package-lock.json'
- 'gulp.d/**/*'
- 'src/**/*'
- 'preview-src/**/*'
- '.github/actions/build-setup/**/*'
- '.github/workflows/build-bundle.yml'

jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Build Setup
uses: ./.github/actions/build-setup
- name: Bundle documentation theme
run: npm run bundle
- name: Upload bundle
uses: actions/upload-artifact@v4
with:
name: ui-bundle-${{github.sha}}
path: build/ui-bundle.zip

0 comments on commit df47816

Please sign in to comment.