Skip to content

Merge pull request #69 from Qimath/feat/list-conversations-options #306

Merge pull request #69 from Qimath/feat/list-conversations-options

Merge pull request #69 from Qimath/feat/list-conversations-options #306

Workflow file for this run

on: [push, pull_request]
name: Test and Build
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest]
node-version: ['20.x', '22.x', '24.x']
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install NodeJS
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Verify versions
run: node --version && npm --version && node -p process.versions.v8
- name: Cache build artifacts
id: cache-node
uses: actions/cache@v4
with:
path: |
~/.npm
node_modules
key: test-${{ runner.os }}-node-${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
- name: Run build
run: npm run build