Skip to content

Commit

Permalink
Merge pull request #39 from babylonlabs-io/merge-main-into-dev-12
Browse files Browse the repository at this point in the history
Merge main into dev
  • Loading branch information
jrwbabylonlab authored Oct 25, 2024
2 parents 97c88fc + a5aa45d commit 70ece17
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 107 deletions.
107 changes: 0 additions & 107 deletions .circleci/config.yml

This file was deleted.

13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: ci

on:
pull_request:
branches:
- "**"

jobs:
lint_test:
uses: babylonlabs-io/.github/.github/workflows/reusable_node_lint_test.yml@push
with:
run-build: true
run-unit-tests: true
19 changes: 19 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: publish

on:
workflow_dispatch:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
lint_test:
uses: babylonlabs-io/.github/.github/workflows/reusable_node_lint_test.yml@push
secrets: inherit
with:
run-build: true
run-unit-tests: true
publish: true
publish-command: |
./bin/ci_validate_version.sh
npm publish
14 changes: 14 additions & 0 deletions .github/workflows/publish_canary.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: publish_canary

on:
workflow_dispatch:

jobs:
lint_test:
uses: babylonlabs-io/.github/.github/workflows/reusable_node_lint_test.yml@push
secrets: inherit
with:
run-build: true
run-unit-tests: true
publish: true
publish-command: 'npm publish --tag canary'

0 comments on commit 70ece17

Please sign in to comment.