Skip to content

build(deps): bump @gleanwork/api-client from 0.11.2 to 0.13.0 #894

build(deps): bump @gleanwork/api-client from 0.11.2 to 0.13.0

build(deps): bump @gleanwork/api-client from 0.11.2 to 0.13.0 #894

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up mise
uses: jdx/mise-action@v2
with:
cache: true
mise_toml: |
[tools]
node = "${{ matrix.node-version }}"
pnpm = "10"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run linter
run: pnpm lint
- name: Build
run: pnpm build
- name: Run tests
run: pnpm test