chore(deps-dev): bump the development-dependencies group with 14 upda… #1268
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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/[email protected] | |
- name: 🏗 Setup nodejs | |
uses: actions/[email protected] | |
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" |