Skip to content

refactor: replace polygonMumbai with optimism #951

refactor: replace polygonMumbai with optimism

refactor: replace polygonMumbai with optimism #951

Workflow file for this run

name: Test workflow
on: [push, workflow_dispatch]
jobs:
lint:
name: Lint sources
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: "actions/checkout@main"
- name: Set Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint sources
run: yarn run lint
unit_test:
name: Unit tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: "actions/checkout@main"
- name: Set Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --frozen-lockfile && yarn build
- name: Run tests
run: yarn test