Skip to content

chore(deps): update typescript-eslint monorepo to v6 (major) #2742

chore(deps): update typescript-eslint monorepo to v6 (major)

chore(deps): update typescript-eslint monorepo to v6 (major) #2742

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- master
- main
jobs:
build:
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: npm install, build, and test
run: |
yarn --frozen-lockfile
yarn build
yarn format:check
yarn lint
yarn test
/bin/bash e2e/setup.sh
yarn e2e
env:
CI: true