Skip to content

chore(deps): bump the github-actions group with 4 updates #1262

chore(deps): bump the github-actions group with 4 updates

chore(deps): bump the github-actions group with 4 updates #1262

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.1.1
- name: 🏗 Setup nodejs
uses: actions/setup-node@v4.0.0
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"