Skip to content

Integration Tests

Integration Tests #431

Workflow file for this run

name: Integration Tests
on:
schedule:
- cron: "0 0 * * *" # Runs every day at midnight
workflow_dispatch:
jobs:
integration:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install jq
run: |
sudo apt-get update
sudo apt-get install -y jq
- name: Install dependencies
run: |
yarn
yarn link
- name: Build
run: yarn build
- name: Integration
run: ./scripts/integration.sh
env:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}