forked from shardus/lib-net
-
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.
SYS-197 added ci and fixed things to make the ci work
- Loading branch information
1 parent
d40eae0
commit bf7fa3d
Showing
6 changed files
with
35 additions
and
74 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
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,27 @@ | ||
name: Node CI Workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
pull_request: | ||
branches: | ||
- dev | ||
workflow_dispatch: | ||
inputs: | ||
workflowBranch: | ||
description: 'Select the branch to run the workflow on' | ||
required: true | ||
default: 'main' | ||
type: choice | ||
options: | ||
- dev | ||
- main | ||
jobs: | ||
ci-dev: | ||
if: ${{ github.event.inputs.workflowBranch == 'dev' }} | ||
uses: shardeum/github-automation/.github/workflows/node-ci-shared.yml@dev | ||
|
||
ci-main: | ||
if: ${{ github.event.inputs.workflowBranch == 'main' || !github.event.inputs.workflowBranch }} | ||
uses: shardeum/github-automation/.github/workflows/node-ci-shared.yml@main |
This file was deleted.
Oops, something went wrong.
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
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
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