Skip to content

Bump vite from 4.2.1 to 4.3.9 #47

Bump vite from 4.2.1 to 4.3.9

Bump vite from 4.2.1 to 4.3.9 #47

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16.x]
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup node env
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache : yarn
- name: Install dependencies
run: yarn install --immutable
- name: Run nextjs lint
run: yarn next:lint --max-warnings=0
- name: Check typings on nextjs
run: yarn next:check-types
- name: Run hardhat lint
run: yarn hardhat:lint --max-warnings=0