Skip to content

feat!: add componentDidCatch for error handling #88

feat!: add componentDidCatch for error handling

feat!: add componentDidCatch for error handling #88

Workflow file for this run

name: Validate code
on: pull_request
jobs:
validate-code:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Run linter
run: npm run lint