Skip to content

ci: integration test #57

ci: integration test

ci: integration test #57

Workflow file for this run

name: Integration Tests
on:
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- converted_to_draft
- ready_for_review
workflow_dispatch:
jobs:
integration:
if: |
github.event_name != 'pull_request' || (github.event_name ==
'pull_request' && github.event.pull_request.draft == false)
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 }}