Skip to content

Bump semver from 5.7.1 to 5.7.2 #459

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #459

Workflow file for this run

name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [master]
pull_request:
branches: [master]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14"
- name: Install Buf
uses: bufbuild/buf-setup-action@v1.3.1
- name: Nigiri Bitcoin
uses: vulpemventures/nigiri-github-action@v1
- run: yarn
- run: yarn build
- run: yarn lint
- name: Install and Run TDEX Daemon
shell: 'script -q -e -c "bash {0}"'
run: bash ./scripts/tdexd-run
# Unit and Integration test
- name: Run Integration Tests
run: yarn test