Skip to content

BTC USD Price feed (#77) #67

BTC USD Price feed (#77)

BTC USD Price feed (#77) #67

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches: [ "master" ]
pull_request_target:
branches: [ "master" ]
jobs:
tests:
runs-on: self-hosted
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Check branch
run: git branch
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test