Skip to content

Added 2nd level cache to Pongo and batching to handle method #769

Added 2nd level cache to Pongo and batching to handle method

Added 2nd level cache to Pongo and batching to handle method #769

Workflow file for this run

name: Build and test
on:
# run it on push to the default repository branch
push:
branches: [main]
paths:
- "src/**"
- "!src/docs/**"
- "./.github/workflows/build_and_test.yml"
# run it during pull request
pull_request:
paths:
- "src/**"
- "!src/docs/**"
- "./.github/workflows/build_and_test.yml"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
defaults:
run:
working-directory: src
jobs:
build-and-test-code:
name: Build application code
# use system defined below in the tests matrix
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v6
- name: Use Node.js
uses: actions/setup-node@v6
with:
node-version-file: ./src/.nvmrc
- name: Install dependencies
run: npm ci
# - name: Install Playwright chromium browser
# working-directory: ./src/e2e/browser
# run: npx playwright install chromium
- name: Build TS
run: npm run build:ts
- name: Run linting (ESlint and Prettier)
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test