Thanks to visit codestin.com
Credit goes to github.com

Skip to content

ADK changes

ADK changes #358

Workflow file for this run

name: Angular Tests
on:
pull_request:
branches: [ "main" ]
push:
branches: [ "main" ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js (Latest LTS)
uses: actions/setup-node@v4
with:
node-version: 'lts/*' # Use the latest LTS version
cache: 'npm' # Enable caching of npm dependencies
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test -- --no-watch --no-progress --browsers=ChromeHeadlessCI