Skip to content

build(deps-dev): bump @storybook/addon-links from 7.0.18 to 7.4.0 #871

build(deps-dev): bump @storybook/addon-links from 7.0.18 to 7.4.0

build(deps-dev): bump @storybook/addon-links from 7.0.18 to 7.4.0 #871

Workflow file for this run

# This workflow runs lint and type checking scripts
name: Quality check (lint + type checking)
on:
pull_request:
jobs:
run-linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.13.0
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Check types
run: npm run check-types
env:
NODE_OPTIONS: "--max_old_space_size=4096"