mirror of
https://github.com/penpot/penpot.git
synced 2026-06-09 17:02:05 +00:00
58 lines
1.1 KiB
YAML
58 lines
1.1 KiB
YAML
name: "CI: Common"
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'common/**'
|
|
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
- ready_for_review
|
|
|
|
push:
|
|
branches:
|
|
- develop
|
|
- staging
|
|
|
|
paths:
|
|
- 'common/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test-common:
|
|
if: ${{ !github.event.pull_request.draft }}
|
|
name: "Common Tests"
|
|
runs-on: penpot-runner-02
|
|
container:
|
|
image: penpotapp/devenv:latest
|
|
volumes:
|
|
- /var/cache/github-runner/m2:/root/.m2
|
|
- /var/cache/github-runner/gitlib:/root/.gitlibs
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Lint
|
|
working-directory: ./common
|
|
run: |
|
|
corepack enable;
|
|
corepack install;
|
|
pnpm install;
|
|
pnpm run check-fmt:clj
|
|
pnpm run check-fmt:js
|
|
pnpm run lint:clj
|
|
|
|
- name: Tests
|
|
working-directory: ./common
|
|
run: |
|
|
./scripts/test
|