Skip to content

refactor: send nothing when faculty is not specified (#72) #110

refactor: send nothing when faculty is not specified (#72)

refactor: send nothing when faculty is not specified (#72) #110

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install deps
run: pnpm install --frozen-lockfile
- name: Format check
run: pnpm run format:check
if: always()
- name: Build
env:
PROMOCHATOR_API: ${{ secrets.PROMOCHATOR_API }}
run: pnpm run build
if: always()