Skip to content

Commit

Permalink
Merge pull request #27 from getsafle/dev
Browse files Browse the repository at this point in the history
Merging dev code to test
  • Loading branch information
sshubhamagg committed Dec 4, 2023
2 parents cdecb6d + 53100dc commit 71c9045
Show file tree
Hide file tree
Showing 7 changed files with 4,942 additions and 1,831 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/feature&bugfix.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18.x
- run: npm ci
# - run: npm run test

Expand All @@ -29,7 +29,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 18.x
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish --access public
Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/other-branches.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Feature/Bugfix/dev/test branch

on:
push:
branches:
- feature-*
- bugfix-*
- dev
- test
pull_request:
branches:
- feature-*
- bugfix-*
- dev
- test
paths:
- package.json
- CHANGELOG

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Code checkout
uses: actions/checkout@v2

- name: Setting up Node.js
uses: actions/setup-node@v2
with:
node-version: '18.x'

- name: Installing dependencies
run: npm ci

- name: Run tests
run: |
npm run test:coverage
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,13 @@

### 1.2.2 (2023-07-05)

- Adding badges to readme.md
- Adding badges to readme.md

### 1.2.3 (2023-11-27)

- Updated node version to 18x

### 1.2.4 (2023-11-30)

- Add gas limit and gas estimation in getFees()
- updated tests for getFees() update

0 comments on commit 71c9045

Please sign in to comment.