mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-09 01:49:37 -06:00
Some checks failed
- Added 'submodules: recursive' option to the checkout step in multiple workflow files to ensure submodules are properly initialized during CI/CD processes.
42 lines
838 B
YAML
42 lines
838 B
YAML
name: Check Code Quality
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main, develop ]
|
|
push:
|
|
branches: [ main, develop ]
|
|
|
|
jobs:
|
|
check-lint-and-build:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v5
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- name: Cache node modules
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-
|
|
|
|
- name: Install packages
|
|
run: npm ci
|
|
|
|
- name: Check linting
|
|
run: npm run lint:check
|
|
|
|
- name: Generate Prisma client
|
|
run: npm run db:generate
|
|
|
|
- name: Check build
|
|
run: npm run build |