Skip to content

chore(deps): update typescript-eslint monorepo to v8 (major) #907

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

chore(deps): update typescript-eslint monorepo to v8 (major) #907

Workflow file for this run

name: CI
on: pull_request
jobs:
tests:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["12", "14", "16"]
container: node:lts
timeout-minutes: 5
steps:
- name: Check out repository code
uses: actions/checkout@v3
- uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org
scope: "@acid-tango"
- uses: actions/cache@v3
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Tests
run: yarn test