Mylloon
aded2add59
All checks were successful
Publish latest version / build (push) Successful in 1m45s
Reviewed-on: #155 Co-authored-by: Mylloon <kennel.anri@tutanota.com> Co-committed-by: Mylloon <kennel.anri@tutanota.com>
23 lines
402 B
YAML
23 lines
402 B
YAML
name: Lint and Format Check
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
branches:
|
|
- main
|
|
- dev
|
|
|
|
jobs:
|
|
lint-and-format:
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Run lint
|
|
run: npm run lint
|
|
|
|
- name: Run format check
|
|
run: npm run format-check
|