Skip to content

Working Relayer for Other chain -> MultiversX calls & MultiversX -> other chain #53

Working Relayer for Other chain -> MultiversX calls & MultiversX -> other chain

Working Relayer for Other chain -> MultiversX calls & MultiversX -> other chain #53

Workflow file for this run

name: ESLint & Tests
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
services:
redis:
image: 'redis:alpine'
ports:
- 6379:6379
postgres:
image: postgres:latest
ports:
- 5432:5432
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: password
POSTGRES_DB: relayer_test
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm install -g dotenv-cli
- run: npm run test:migrate
- run: npm run test:e2e