Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
pull_request:
branches:
- production
paths-ignore:
- ".flue/**"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
Expand Down
79 changes: 79 additions & 0 deletions .github/workflows/flue-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: Flue CI

on:
pull_request:
branches:
- production
paths:
- ".flue/**"

permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
pre-build:
name: Pre Build
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- name: Set up pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
with:
version: 11

- name: Set up node
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: 24.x
cache: pnpm
cache-dependency-path: .flue/pnpm-lock.yaml

- name: Install node_modules
run: pnpm install --frozen-lockfile
working-directory: .flue

- name: Typecheck
run: pnpm run typecheck
working-directory: .flue

build:
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
name: Build
needs: pre-build
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- name: Set up pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
with:
version: 11

- name: Set up node
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: 24.x
cache: pnpm
cache-dependency-path: .flue/pnpm-lock.yaml

- name: Install node_modules
run: pnpm install --frozen-lockfile
working-directory: .flue

- name: Build
run: pnpm run build
working-directory: .flue

post-build:
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
name: Post Build
needs: build
runs-on: ubuntu-latest
steps:
- name: No post-build checks yet
run: echo "No post-build checks for flue yet."
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed