mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 18:07:17 +01:00
49a15e9f53
* Enhance and optimize GitHub workflows * Prettier app.json * Update YAML list * Prettier workflows * Include YAML in prettier runs * Improve job naming * Update E2E workflow name * Prettier docker-compose YAML * Update workflows * Put freezegun into prod requirements * Update workflow names * Update workflow names again * Update ci-backend.yml * Update Lint with flake8 * Remove redundant eslint:ci script * Revert "Put freezegun into prod requirements" This reverts commit 460e3942d10194e9f46c8a2196ebd9ecc1f23c6f. * Install freezegun in workflow and update dev.txt * Prettier auto-image.yml * Add "CI" to ci-* names * Fix prettier:check * Add missing SECRET_KEY * Prettier 2 last files
26 lines
569 B
YAML
26 lines
569 B
YAML
name: Frontend CI
|
|
|
|
on:
|
|
- pull_request
|
|
|
|
jobs:
|
|
code-quality:
|
|
name: Code quality checks
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Node 12
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
|
|
- name: Install package.json dependencies with Yarn
|
|
run: yarn
|
|
|
|
- name: Check formatting with prettier
|
|
run: yarn prettier:check
|
|
|
|
- name: Lint with ESLint
|
|
run: yarn eslint
|