Skip to content

chore: decrease typescript minor version to fix eslint cli warning #182

chore: decrease typescript minor version to fix eslint cli warning

chore: decrease typescript minor version to fix eslint cli warning #182

Workflow file for this run

name: Code Health Checks
on:
pull_request:
branches:
- main
env:
NODE_VERSION: 20
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v3
with:
path: node_modules
key: node-modules-${{ hashFiles('yarn.lock') }}
- name: Install Dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
checks:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
check:
- name: Typecheck
command: typecheck
- name: Lint
command: eslint:check
- name: Formatting
command: prettier:check
- name: Unit Tests
command: test
fail-fast: false
name: ${{ matrix.check.name }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'yarn'
- name: Restore node_modules
uses: actions/cache@v3
with:
path: node_modules
key: node-modules-${{ hashFiles('yarn.lock') }}
- run: yarn ${{ matrix.check.command }}