Skip to content

Feature/whatsapp

Feature/whatsapp #14

Workflow file for this run

name: CI - PR Validation
on:
pull_request:
branches: [develop]
permissions:
contents: read
jobs:
validate:
name: CI - PR Validation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install
run: npm ci
- name: Format (check)
run: npm run format
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
- name: Build
run: npm run build