Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e9fab40
Merge pull request #32 from bitpay/revert-30-bug/karma_reference
braydonf Oct 19, 2015
95be4a1
Fix double bitcore-lib loading issue.
Oct 21, 2015
a93a997
Merge pull request #33 from braydonf/double
msalcala11 Oct 21, 2015
5b0889a
Fixed issue with exporting bitcore-lib module name.
Nov 7, 2015
4f5f769
Merge pull request #34 from braydonf/bug/lib-export
gabegattis Nov 7, 2015
9d349ce
Update browserify
braydonf Aug 9, 2016
265a231
Merge branch 'braydonMaster'
gabegattis Aug 10, 2016
684ccf7
updates dependencies
matiu Mar 15, 2017
adb000e
bump
matiu Mar 15, 2017
0c954fe
Merge pull request #38 from matiu/ref/deps
matiu Mar 15, 2017
5ab11bd
fix api new changes
matiu Mar 15, 2017
5e6a676
Merge pull request #39 from matiu/bug/update
matiu Mar 15, 2017
f46f089
fix other target paths
matiu Mar 15, 2017
2e40713
bump
matiu Mar 15, 2017
bd4595f
Merge pull request #40 from matiu/bug/update2
matiu Mar 15, 2017
5f911c1
Update package.json
matiu Mar 15, 2017
20e48ec
fix karma path node 6/7
matiu Mar 20, 2017
6747a4a
Merge pull request #41 from matiu/bug/karmaPathnode6/7
matiu Mar 20, 2017
bbe096e
change firefox to phantomjs
matiu Oct 25, 2017
fd5f18c
update karma
matiu Oct 25, 2017
7b2a0d1
add package-lock
matiu Oct 25, 2017
4c51c7c
bump version
matiu Oct 25, 2017
d4e8b2b
Merge pull request #42 from matiu/ref/phantom2
kleetus Oct 25, 2017
b018956
update to gulp4 mocha5, resolve npm audit
matiu Nov 28, 2018
5e773e9
Merge pull request #43 from matiu/chore/update-deps
matiu Nov 28, 2018
2263c94
comment out unused staff
matiu Nov 29, 2018
d14d98f
Merge pull request #44 from matiu/chore-update-deps2
matiu Nov 29, 2018
18b958e
fix export
matiu Nov 29, 2018
1023e8a
Merge pull request #45 from matiu/bug/exports
matiu Nov 29, 2018
69b2d7c
Create npm-gulp.yml
Umeh832 Jul 1, 2025
3110adf
Merge pull request #1 from Umeh832/Umeh832-patch-$$$
Umeh832 Jul 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/workflows/npm-gulp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Gulp CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14, 16, 18]

steps:
- uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Cache Node.js modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-

- name: Install dependencies
run: npm install

- name: Run Gulp tasks
run: gulp build

- name: Run tests
run: npm test
Loading