Skip to content

renovate(deps): update typescript-eslint monorepo to v8 (major) #1389

renovate(deps): update typescript-eslint monorepo to v8 (major)

renovate(deps): update typescript-eslint monorepo to v8 (major) #1389

Workflow file for this run

name: Build Project
on:
pull_request:
branches:
- develop
- main
jobs:
test_and_build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-node-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install --frozen-lockfile
- name: Lint project
run: yarn lint
- name: Build project
run: yarn build