Skip to content

Commit

Permalink
Add the github actions. Add the publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
skubarenko committed Sep 27, 2024
1 parent 3e74c30 commit b08d29a
Show file tree
Hide file tree
Showing 10 changed files with 4,060 additions and 1,717 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/juster-gql-client.yml
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 }}
103 changes: 103 additions & 0 deletions .github/workflows/juster-sdk.yml
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 }}
21 changes: 21 additions & 0 deletions LICENSE
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.
Loading

0 comments on commit b08d29a

Please sign in to comment.