Skip to content

feat(dashboard): split chunks #2861

feat(dashboard): split chunks

feat(dashboard): split chunks #2861

Workflow file for this run

name: Build and lint
on:
push:
branches-ignore:
- main
workflow_dispatch:
concurrency:
group: pr-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: false
jobs:
build-lint:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v2
with:
bun-version-file: ".bun-version"
- name: Install JavaScript dependencies
if: ${{ matrix.folders.runtime == 'js' && env.run-build == 'true' }}
run: bun install --frozen-lockfile
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.work
cache-dependency-path: |
go.work.sum
**/go.sum
- name: Install go dependencies
run: bun cli deps
- name: Build
run: bun cli build
- name: Lint
run: bun lint