Skip to content

fix(component->type): fixed typo in media gallery's component identifier #8

fix(component->type): fixed typo in media gallery's component identifier

fix(component->type): fixed typo in media gallery's component identifier #8

Workflow file for this run

name: Validate library's code
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "22.17"
- name: Set up pnpm as a package manager
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install dependencies
run: pnpm install
shell: bash
- name: Run ESLint script and validate
run: pnpm run lint
shell: bash
- name: Build a project using TypeScript Compiler
run: pnpm exec tsc
shell: bash
- name: Build a project
run: pnpm run build
shell: bash