Skip to content

included cronos network #85

included cronos network

included cronos network #85

Workflow file for this run

name: Build
on:
push:
branches: ['*', '!master', '!qa']
jobs:
build_test_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
cache: npm
node-version: 18
registry-url: 'https://npm.pkg.github.com'
scope: '@oriumnetwork'
- name: Install Dependencies
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GHB_TOKEN }}
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build Mumbai
run: npm run build:mumbai
- name: Build Cronos
run: npm run build:cronos
- name: Build Polygon
run: npm run build:polygon