mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-25 02:31:30 +01:00
24 lines
392 B
YAML
24 lines
392 B
YAML
|
name: Lint
|
||
|
|
||
|
on:
|
||
|
- pull_request
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: ESLint
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
# Check out the repository
|
||
|
- uses: actions/checkout@v1
|
||
|
|
||
|
# Install Node.js
|
||
|
- uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 12
|
||
|
|
||
|
# Install your dependencies
|
||
|
- run: yarn install
|
||
|
|
||
|
# Run ESLint
|
||
|
- uses: eslint/github-action@v0
|