Skip to content

fix(Search, Typescript): updates the gmeta property in GSearchResult type #798

fix(Search, Typescript): updates the gmeta property in GSearchResult type

fix(Search, Typescript): updates the gmeta property in GSearchResult type #798

Workflow file for this run

name: 'ci'
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call:
jobs:
inspect-code:
name: 'Inspect Code'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version: lts/iron
- run: npm ci
- run: npm run lint
- run: npm run test -- --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
node-compatibility:
name: 'Node.js Compatibility'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['lts/hydrogen', 'lts/iron', '22.x']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
cache: npm
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test