mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 09:16:49 +01:00
f962d65242
* docs: update README.md * docs: update .all-contributorsrc * yet another ci fix Co-authored-by: posthog-contributions-bot[bot] <80958034+posthog-contributions-bot[bot]@users.noreply.github.com> Co-authored-by: yakkomajuri <yakko.majuri@gmail.com>
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
name: Frontend CI
|
|
|
|
on:
|
|
- pull_request
|
|
|
|
jobs:
|
|
frontend-code-quality:
|
|
name: Code quality checks
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Node 14
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14
|
|
|
|
- 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
|
|
|
|
- name: Run typescript with strict
|
|
run: |
|
|
./bin/check-typescript-strict
|
|
|
|
jest:
|
|
name: Jest tests
|
|
runs-on: ubuntu-20.04
|
|
if: ${{ github.actor != 'posthog-contributions-bot[bot]' }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Set up Node 14
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14
|
|
|
|
- name: Install package.json dependencies with Yarn
|
|
run: yarn
|
|
|
|
- name: Test with Jest
|
|
run: yarn test
|