Skip to content

build(deps-dev): bump @babel/core from 7.22.1 to 7.22.15 #875

build(deps-dev): bump @babel/core from 7.22.1 to 7.22.15

build(deps-dev): bump @babel/core from 7.22.1 to 7.22.15 #875

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"