Skip to content

Update CONTRIBUTING.md #646

Update CONTRIBUTING.md

Update CONTRIBUTING.md #646

Workflow file for this run

name: "Frontend checks"
on:
merge_group:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v4
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build frontend
working-directory: ./kitsune-fe
run: nix develop ..#frontend --command bash -c "pnpm i && pnpm build"
lints:
name: Check lints
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v4
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Run linter
working-directory: ./kitsune-fe
run: nix develop ..#frontend --command bash -c "pnpm i && pnpm lint"