-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SBG-ECOM: v0.0.1
- Loading branch information
Showing
98 changed files
with
2,653 additions
and
19 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,59 @@ | ||
name: sbg-ecom | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
paths: | ||
- packages/sbg-ecom/** | ||
|
||
jobs: | ||
# test: | ||
# name: 🧪 Test | ||
# runs-on: ubuntu-latest | ||
|
||
# strategy: | ||
# matrix: | ||
# node-version: [18.x, 20.x] | ||
|
||
# steps: | ||
# - name: 👍 Checkout | ||
# uses: actions/checkout@v4 | ||
|
||
# - name: ❇️ Setup node.js | ||
# uses: actions/setup-node@v4 | ||
# with: | ||
# node-version: ${{ matrix.node-version }} | ||
# cache: 'npm' | ||
|
||
# - name: 📥 Install Dependencies | ||
# run: npm install | ||
|
||
# - name: 🧑🔬 Tests | ||
# run: "npm run sbg-ecom:test" | ||
|
||
publish: | ||
name: 🚀 Publish | ||
runs-on: ubuntu-latest | ||
# needs: test | ||
if: github.ref == 'refs/heads/main' | ||
|
||
steps: | ||
- name: 👍 Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: ❇️ Setup node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: 📥 Install Dependencies | ||
run: npm install | ||
|
||
- name: 🛠️ Build | ||
run: "npm run sbg-ecom:build" | ||
|
||
- name: 🚀 Publish to npm | ||
run: "npm publish --access public --workspace=@coremarine/sbg-ecom" | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
.idea | ||
.DS_Store | ||
packages/**/lib/ | ||
imgs/discards | ||
|
||
# Logs | ||
logs | ||
|
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
rm -rf node_modules \ | ||
packages/nmea-parser/dist packages/nmea-parser/node_modules packages/nmea-parser/coverage \ | ||
packages/norsub-emru/dist packages/norsub-emru/node_modules packages/norsub-emru/coverage \ | ||
packages/sbg-ecom/dist packages/sbg-ecom/node_modules packages/sbg-ecom/coverage \ | ||
packages/septentrio-sbf/dist packages/septentrio-sbf/node_modules packages/septentrio-sbf/coverage \ | ||
packages/thelmabiotel-tblive/dist packages/thelmabiotel-tblive/node_modules packages/thelmabiotel-tblive/coverage |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
.DS_Store | ||
docs | ||
lib | ||
tests/*.txt | ||
*.tss | ||
|
||
# Logs | ||
logs | ||
|
Oops, something went wrong.