Skip to content

fix(dashboard): fix modernExtend entities not appearing on dashboard #2837

fix(dashboard): fix modernExtend entities not appearing on dashboard

fix(dashboard): fix modernExtend entities not appearing on dashboard #2837

Workflow file for this run

# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: πŸ“₯ Checkout Repository
uses: actions/checkout@v4
- name: πŸ“¦ Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
- name: πŸš€ Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: πŸ› οΈ Install Dependencies
run: pnpm install --frozen-lockfile
- name: πŸ” Check static code analysis
run: pnpm run test:eslint
- name: πŸ’… Check code style
run: pnpm run test:pretty
- name: πŸ§ͺ Run tests
run: pnpm run test:coverage
- name: πŸ—οΈ Build production bundle
run: pnpm build