Skip to content

Merge branch 'main' of https://github.com/Build5Nines/AIChatUI #12

Merge branch 'main' of https://github.com/Build5Nines/AIChatUI

Merge branch 'main' of https://github.com/Build5Nines/AIChatUI #12

name: Test App - Node.js
on:
push:
paths:
- 'app/**'
pull_request:
paths:
- 'app/**'
workflow_dispatch:
jobs:
test-app:
name: 'Test Node.js App'
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: 'app'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
- name: NPM Install
run: npm install
- name: NPM Test
run: npm test