Skip to content
This repository has been archived by the owner on Oct 29, 2023. It is now read-only.

Update jest monorepo to v29 #1997

Update jest monorepo to v29

Update jest monorepo to v29 #1997

Workflow file for this run

name: ESLint
on:
push:
pull_request:
branches:
- 'feature/**'
- 'issue/**'
- 'master'
paths-ignore:
- 'examples/**'
- '.github/**'
- '.vscode/**'
- 'docs/**'
- '.eslintiginore'
- '.gitignore'
- '.npmignore'
- '.travis.yml'
- 'LICENSE'
- '**.md'
- 'renovate.json'
jobs:
eslint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 15.x, 16.x]
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Uses Node.js v${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Installs dependencies
run: npm i -g eslint && yarn
- name: Lints the repository
run: yarn lint
- name: Check if project can be compiled
run: tsc --noEmit
- name: Runs Jest for unit testing
run: yarn test