Skip to content

chore(deps-dev): bump the lint-dependencies group with 7 updates #1249

chore(deps-dev): bump the lint-dependencies group with 7 updates

chore(deps-dev): bump the lint-dependencies group with 7 updates #1249

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build & Lint
on:
workflow_dispatch:
pull_request:
push:
branches:
- next
- main
env:
NODE_VERSION: lts/*
jobs:
build-lint-ts:
name: Build & Lint Typescript
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: ⤵️ Checkout repository
uses: actions/checkout@v4.0.0
- name: 🏗 Setup nodejs
uses: actions/setup-node@v3.8.1
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: 🏗 Install dependencies
run: yarn install --frozen-lockfile
- name: 🚀 Build Typescript
run: yarn build
- name: 🚀 Extra Packages Build
run: yarn build:r
- name: 🚀 Run ESLint
run: yarn lint:ts
env:
NODE_OPTIONS: "--max-old-space-size=4096 --max-semi-space-size=64"