mirror of https://github.com/artf/grapesjs.git
nocodeframeworkdrag-and-dropsite-buildersite-generatortemplate-builderui-builderweb-builderweb-builder-frameworkwebsite-builderno-codepage-builder
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
480 B
23 lines
480 B
name: GrapesJS Qualty Checks
|
|
on:
|
|
push:
|
|
branches: [dev]
|
|
pull_request:
|
|
branches: [dev]
|
|
|
|
jobs:
|
|
quality-checks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/setup-project
|
|
- name: Lint
|
|
run: pnpm lint
|
|
- name: Format Check
|
|
run: pnpm format:check
|
|
- name: Build
|
|
run: pnpm build --force
|
|
- name: Test
|
|
run: pnpm test
|
|
- name: Docs
|
|
run: pnpm docs:api
|
|
|