Skip to content

Make web3.js ^ dependency & refresh lockfile (#2) #11

Make web3.js ^ dependency & refresh lockfile (#2)

Make web3.js ^ dependency & refresh lockfile (#2) #11

Workflow file for this run

name: Prettier
on:
push:
branches:
- master
- 'release/**'
pull_request:
branches:
- master
- 'release/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache dependencies
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run eslint
run: |-
yarn lint