Skip to content

Update error handling in Onyx to prevent unnecessary data eviction #970

Update error handling in Onyx to prevent unnecessary data eviction

Update error handling in Onyx to prevent unnecessary data eviction #970

Workflow file for this run

name: TypeScript Checks
on:
pull_request:
types: [opened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
# v5.0.0
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
- name: Setup Node
# v4
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
with:
node-version-file: ".nvmrc"
cache: npm
cache-dependency-path: package-lock.json
- run: npm ci
- name: Type check with TypeScript
run: npm run typecheck
env:
CI: true