Merge pull request #66 from rsksmart/add-pegout-transaction-created-e… #151
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |