Skip to content

feat: rework anonymous block participant list display #1318

feat: rework anonymous block participant list display

feat: rework anonymous block participant list display #1318

Workflow file for this run

name: CI
on:
push:
branches: ["main", "develop"]
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: 22
cache: "npm"
- name: Install dependencies
run: npm ci --force
- name: Check commit name
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
- name: Format check
run: npm run format:check
if: always()
- name: Run tests
run: npm test
env:
NEXT_PUBLIC_EVENTOWNIK_API: https://example.com/
SESSION_SECRET: MEGATAJNYKLUCZ
NEXT_PUBLIC_PHOTO_URL: https://example.com/
NEXT_PUBLIC_HCAPTCHA_SITEKEY: MEGANIETAJNYKLUCZ
if: always()
- name: Build
env:
NEXT_PUBLIC_EVENTOWNIK_API: https://example.com/
SESSION_SECRET: MEGATAJNYKLUCZ
NEXT_PUBLIC_PHOTO_URL: https://example.com/
NEXT_PUBLIC_HCAPTCHA_SITEKEY: MEGANIETAJNYKLUCZ
run: npm run build
if: always()