Skip to content

chore(event-section): added thumbnail url in event card #194

chore(event-section): added thumbnail url in event card

chore(event-section): added thumbnail url in event card #194

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- 'main'
env:
APP_GRAPHQL_CODEGEN_ENDPOINT: './backend/schema.graphql'
APP_GRAPHQL_ENDPOINT: 'http://web:8000/graphiql/'
GITHUB_WORKFLOW: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
env:
PIPELINE_TYPE: ci
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install pnpm
uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
build:
name: Build
needs: [lint]
runs-on: ubuntu-latest
env:
PIPELINE_TYPE: ci
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: pnpm/action-setup@v4
name: Install pnpm
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build