forked from thanos-irodotou/node-xlsx-stream
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9f0f623
commit 3424c96
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# For official documentation on this workflow, please refer to the link below. | ||
# https://github.com/brandwatch/bw-workflow-actions/blob/dev/workflows/node/node-deploy-package.yaml.md | ||
name: CI Pipeline - Publish Package | ||
|
||
permissions: | ||
checks: write | ||
contents: write | ||
packages: read | ||
|
||
#on: | ||
# release: | ||
# types: [ released ] # can be `published` to run on pre-release instead of production releases | ||
on: | ||
workflow_dispatch: # used for workflow-tests | ||
push: | ||
branches: | ||
- main | ||
- master | ||
|
||
jobs: | ||
build-pipeline: | ||
name: "Publish" | ||
uses: brandwatch/bw-workflow-actions/.github/workflows/node-deploy-package.yaml@stage | ||
with: | ||
node-version: 20 | ||
build-step: true | ||
linter: true # optional, will run "npm run lint". Set to false if you do not have a lint configuration | ||
test: true # optional, will run "npm test". Set to false if you do not have a test suite yet | ||
multiple-packages: false | ||
secrets: inherit |