mirror of
https://github.com/FranP-code/Baileys.git
synced 2025-10-13 00:32:22 +00:00
23 lines
355 B
YAML
23 lines
355 B
YAML
name: Check PR health
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
check-lint:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- name: Install packages
|
|
run: yarn
|
|
|
|
- name: Check linting
|
|
run: yarn lint
|