update: change minimum model parameter requirement from 100 billion to 1 trillion for custom LLM · makeplane/developer-docs@279d582 · GitHub
Workflow file for this run
This file contains hidden or 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
|
name: CI |
|
|
|
on: |
|
pull_request: |
|
branches: [preview, master] |
|
|
|
permissions: |
|
contents: read |
|
|
|
concurrency: |
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} |
|
cancel-in-progress: true |
|
|
|
jobs: |
|
format: |
|
name: Prettier |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v4 |
|
|
|
- uses: pnpm/action-setup@v4 |
|
|
|
- uses: actions/setup-node@v4 |
|
with: |
|
node-version: 20 |
|
cache: pnpm |
|
|
|
- run: pnpm install --frozen-lockfile |
|
|
|
- run: pnpm check:format |
|
|
|
build: |
|
name: Build |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v4 |
|
|
|
- uses: pnpm/action-setup@v4 |
|
|
|
- uses: actions/setup-node@v4 |
|
with: |
|
node-version: 20 |
|
cache: pnpm |
|
|
|
- run: pnpm install --frozen-lockfile |
|
|
|
- run: pnpm build |
You can’t perform that action at this time.