Skip to content

Commit

Permalink
feat: Adds CI implementation (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-rubio-go authored Jan 24, 2024
1 parent a7ca4b8 commit 3e75a7b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: ci-build
on: [push, pull_request, workflow_dispatch]

jobs:
build:
uses: looker-open-source/reusable-actions/.github/workflows/marketplace-viz-ci-build.yml@main
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: release

on:
workflow_dispatch:
push:
branches:
- master

# Cancels an release workflows in progress
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true

jobs:
release:
permissions:
contents: write
pull-requests: write
uses: looker-open-source/reusable-actions/.github/workflows/marketplace-viz-release.yml@main
secrets: inherit
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ var webpackConfig = {
contentBase: "./dist",
},
output: {
filename: "[name].js",
path: __dirname,
filename: "dist/packed_bubble.js",
path: path.join(path.resolve(__dirname), "/dist"),
library: "[name]",
libraryTarget: "umd",
},
Expand Down

0 comments on commit 3e75a7b

Please # to comment.