Skip to content

Feature: Updated Polygon Mainnet and Amoy with Main account #211

Feature: Updated Polygon Mainnet and Amoy with Main account

Feature: Updated Polygon Mainnet and Amoy with Main account #211

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: CI Setup
uses: ./.github/actions/ci-setup
- uses: actions/cache@v3
timeout-minutes: 5
id: cache-build
with:
path: ./*
key: ${{ github.sha }}-${{ github.run_number }}
lint:
name: Lint Packages
runs-on: ubuntu-latest
needs: build
steps:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
check-latest: true
- uses: actions/cache@v3
timeout-minutes: 5
id: restore-build
with:
path: ./*
key: ${{ github.sha }}-${{ github.run_number }}
- run: yarn lint