Skip to content

Update feedback API summary handler to be able to generate summaries from comments stored in different tabs in Google sheets #108

Update feedback API summary handler to be able to generate summaries from comments stored in different tabs in Google sheets

Update feedback API summary handler to be able to generate summaries from comments stored in different tabs in Google sheets #108

Workflow file for this run

name: Automated CI checks
on:
push:
branches: main
pull_request:
branches: main
jobs:
install-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Use Node.js 18.x
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: 18.x
- name: Install dependencies
run: npm ci
- name: Run linter (eslint)
run: npm run lint
- name: Run type check (typescript)
run: npm run typecheck
- name: Run tests (Jest)
run: npm test