-
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.
Add the github actions. Add the publishing
- Loading branch information
1 parent
3e74c30
commit b08d29a
Showing
10 changed files
with
4,060 additions
and
1,717 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,42 @@ | ||
name: packages/juster-gql-client | ||
on: | ||
push: | ||
paths: | ||
- 'packages/juster-gql-client/**' | ||
- 'package.json' | ||
- 'package-lock.json' | ||
- '.github/workflows/juster-gql-client.yml' | ||
branches: | ||
- master | ||
- dev | ||
tags: | ||
- 'juster-gql-client@*.*.*' | ||
pull_request: | ||
env: | ||
node-version: 22 | ||
|
||
jobs: | ||
publish-npm: | ||
name: Publish to NPM | ||
runs-on: ubuntu-latest | ||
if: ${{ contains(github.ref, 'refs/tags/juster-gql-client@') }} | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js ${{ env.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
registry-url: 'https://registry.npmjs.org' | ||
node-version: ${{ env.node-version }} | ||
|
||
- name: Print environment info | ||
run: | | ||
node --version | ||
npm --version | ||
- name: Publish | ||
working-directory: packages/juster-gql-client | ||
run: npm publish | ||
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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
name: packages/juster-sdk | ||
on: | ||
push: | ||
paths: | ||
- 'packages/juster-sdk/**' | ||
- 'package.json' | ||
- 'package-lock.json' | ||
- '.github/workflows/juster-sdk.yml' | ||
branches: | ||
- master | ||
- dev | ||
tags: | ||
- 'juster-sdk@*.*.*' | ||
pull_request: | ||
env: | ||
node-version: 22 | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js ${{ env.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ env.node-version }} | ||
cache: 'npm' | ||
|
||
- name: Print environment info | ||
run: | | ||
node --version | ||
npm --version | ||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Build the package | ||
run: npm run build -w @juster-finance/sdk | ||
|
||
- name: Upload the build as an artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: juster-sdk | ||
path: | | ||
packages/juster-sdk/dist | ||
packages/juster-sdk/package.json | ||
packages/juster-sdk/LICENSE | ||
if-no-files-found: error | ||
retention-days: 1 | ||
|
||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js ${{ env.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ env.node-version }} | ||
cache: 'npm' | ||
|
||
- name: Print environment info | ||
run: | | ||
node --version | ||
npm --version | ||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Lint | ||
run: npm run lint -w @juster-finance/sdk | ||
|
||
publish-npm: | ||
name: Publish to NPM | ||
runs-on: ubuntu-latest | ||
needs: [build, lint] | ||
if: ${{ contains(github.ref, 'refs/tags/juster-sdk@') }} | ||
steps: | ||
- name: Download the build from the artifacts storage | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: juster-sdk | ||
|
||
- name: Set up Node.js ${{ env.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
registry-url: 'https://registry.npmjs.org' | ||
node-version: ${{ env.node-version }} | ||
|
||
- name: Print environment info | ||
run: | | ||
node --version | ||
npm --version | ||
- name: Publish | ||
run: npm publish | ||
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) Juster Finance | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.