Files
Baileys/.github/workflows/lint.yml
Edgard Lorraine Messias 7c3f0df560 feat: Added workflow to release at NPM site (#48)
* chore: Changed name for release

* chore: Sorted package.json

* ci: Added workflow to publish releases

* chore: Updated .gitignore

* chore: Updated lint to use nodejs v18

* chore: Updated package name in README.md

* chore: Change the current version
2023-05-10 20:07:26 -03:00

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: 18.x
- name: Install packages
run: yarn
- name: Check linting
run: yarn lint