Skip to content

fix: incrase gasLimit to 1.5m on base v4 #4236

fix: incrase gasLimit to 1.5m on base v4

fix: incrase gasLimit to 1.5m on base v4 #4236

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
run-linters:
name: Run linters 2
runs-on: ubuntu-latest
steps:
# This action should be the first step of your job, and should be loaded on every separate job.
# If this action is not loaded first, it will not be able to see or block any requests that occured prior to the action running.
- uses: bullfrogsec/bullfrog@dcde5841b19b7ef693224207a7fdec67fce604db # v0.8.3
with:
# List of IPs to allow outbound connections to.
# By default, only localhost and IPs required for the essential operations of Github Actions are allowed.
#allowed-ips:
# List of domains to allow outbound connections to.
# Wildcards are accepted. For example, if allowing `*.google.com`, this will allow `www.google.com`, `console.cloud.google.com` but not `google.com`.
# By default, only domains required for essential operations of Github Actions and uploading job summaries are allowed.
# Refer to https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#communication-requirements-for-github-hosted-runners-and-github for additional domains that should be allowed for additional Github Actions features.
#allowed-domains:
# The egress policy to enforce. Valid values are `audit` and `block`.
# Default: audit
egress-policy: audit
- name: Check out Git repository
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2
- name: Set up node
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
with:
node-version: 18.x
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: npm ci
- name: Run linters
uses: wearerequired/lint-action@42567b31ed576cdd5a431d77ca5bc8822430d1d0 # v1
with:
github_token: ${{ secrets.github_token }}
prettier: true
auto_fix: false
prettier_extensions: 'css,html,js,json,jsx,md,sass,scss,ts,tsx,vue,yaml,yml,sol'