Skip to content

Update integration tests and gas estimates logic (#34) #101

Update integration tests and gas estimates logic (#34)

Update integration tests and gas estimates logic (#34) #101

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up node
uses: actions/setup-node@v1
with:
node-version: 16.x
registry-url: https://registry.npmjs.org
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Install dependencies
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# - name: Run linter
# run: npm run fix:lint
- name: Run Prettier
run: npm run fix:prettier