Skip to content

Create EVM contract metadata package #8

Create EVM contract metadata package

Create EVM contract metadata package #8

Workflow file for this run

name: clean 🧹
on:
push:
branches:
- 'main'
pull_request:
branches: ['main', 'feat/**', 'feature/**']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
format:
name: format
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install
- name: Format Check
run: yarn format:check
lint:
name: lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install
- name: Lint Check
run: yarn lint:check
ts-check:
name: ts-check
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: |
yarn install
yarn tsc --version
- name: Type Check
run: yarn ts-check