diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..97cc0a4 --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,23 @@ +name: CI/CD Using Github actions workflow +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2 + with: + persist-credentials: false + + - name: Node & Npm Version + run: | + node -v + npm -v + + - name: Install 🔧 + run: npm ci + + - name: Test 🚨 + run: npm test diff --git a/abis/bridge.json b/abis/bridge.json index 9364d73..7507ae8 100644 --- a/abis/bridge.json +++ b/abis/bridge.json @@ -960,6 +960,18 @@ "inputs": [], "outputs": [] }, + { + "name": "getActivePowpegRedeemScript", + "type": "function", + "constant": true, + "inputs": [], + "outputs": [ + { + "name": "", + "type": "bytes" + } + ] + }, { "anonymous": false, "inputs": [ diff --git a/package-lock.json b/package-lock.json index 7a8313a..63b41f7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@rsksmart/rsk-precompiled-abis", - "version": "5.0.1-HOP", + "version": "5.0.0-HOP", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@rsksmart/rsk-precompiled-abis", - "version": "5.0.1-HOP", + "version": "5.0.0-HOP", "license": "ISC", "dependencies": { "web3": "^1.3.6" diff --git a/package.json b/package.json index bd4ea15..1e4d686 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "@rsksmart/rsk-precompiled-abis", - "version": "5.0.1-HOP", + "version": "5.0.0-HOP", "description": "Utility to interact with RSK native contracts", "main": "index.js", "repository": { "type": "git", "url": "https://github.com/rsksmart/precompiled-abis.git" }, - "homepage": "https://www.rsk.co", + "homepage": "https://github.com/rsksmart/precompiled-abis#readme", "scripts": { "test": "mocha ./tests/*" }, diff --git a/tests/bridge.test.js b/tests/bridge.test.js index 7a63cf3..d18cb2a 100644 --- a/tests/bridge.test.js +++ b/tests/bridge.test.js @@ -8,7 +8,7 @@ describe('Bridge', () => { }); it('has all the expected signatures', () => { - assert.equal(bridge.abi.length, 73); + assert.equal(bridge.abi.length, 74); }); it('builds a valid contract', () => {