Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
ci: validate on pr (#22)
Browse files Browse the repository at this point in the history
Signed-off-by: Timo Glastra <[email protected]>
  • Loading branch information
TimoGlastra authored Nov 27, 2021
1 parent 16710fa commit f058a5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
description: The type of release. Should be one of "major", "minor", "patch"
required: true
default: 'patch'
pull_request:
branches:
- main

# Make sure we're not running multiple release steps at the same time as this can give issues with determining the next npm version to release.
# Ideally we only add this to the 'release' job so it doesn't limit PR runs, but github can't guarantee the job order in that case:
Expand Down Expand Up @@ -103,4 +106,4 @@ jobs:
- name: Release version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: yarn release ${{ github.event.inputs.releaseType }}
run: yarn release ${{ github.event.inputs.releaseType }}
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ const indy = {
},

async generateNonce() {
return IndySdk.generateNonce();
return IndySdk.generateNonce()
},

async appendTxnAuthorAgreementAcceptanceToRequest(
Expand Down

0 comments on commit f058a5b

Please sign in to comment.