Skip to content

fix : added validation in add image form. #1121

fix : added validation in add image form.

fix : added validation in add image form. #1121

Workflow file for this run

name: CI
on:
# Build on PR creation/updates, also when pushing to main/develop, or create a release
pull_request:
types: [opened, synchronize]
push:
branches: [main, develop]
tags: [v*]
jobs:
validate:
name: Check TS & validate list schema & tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Setup dependencies
uses: ./.github/actions/setup-dependencies
with:
authToken: ${{ secrets.PACKAGE_READ_AUTH_TOKEN }}
- name: Run validation schema
run: yarn validate:schema
- name: Run validation chains
run: yarn validate:chains
- name: TypeScript check
run: yarn typecheck
- name: Run tests
run: yarn test