Skip to content

Merge pull request #106 from Ummi-001/fix/call-ephemeral-initialize #81

Merge pull request #106 from Ummi-001/fix/call-ephemeral-initialize

Merge pull request #106 from Ummi-001/fix/call-ephemeral-initialize #81

Workflow file for this run

name: CI
on:
pull_request:
branches: ['main', 'develop']
types: [opened, synchronize, reopened]
push:
branches: ['main', 'develop']
jobs:
validate:
name: Validate PR (Lint, Test, Build)
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
node-version: '20'
cache: 'npm'
- name: Install Dependencies
run: npm ci
- name: Check Formatting
run: npx prettier --check .
- name: Linting
run: npm run lint
- name: Unit Tests
run: npm run test
- name: Build Verification
run: npm run build