Skip to content

Add new network Sei EVM Devnet - 713715 (#973) #1483

Add new network Sei EVM Devnet - 713715 (#973)

Add new network Sei EVM Devnet - 713715 (#973) #1483

Workflow file for this run

name: Tests CI
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['14', '20']
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, build and run tests
run: |
yarn install --frozen-lockfile
yarn build
yarn test:once --coverage
yarn lint
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}