Skip to content

build(deps): bump @opentelemetry/api from 1.9.0 to 1.9.1 #4168

build(deps): bump @opentelemetry/api from 1.9.0 to 1.9.1

build(deps): bump @opentelemetry/api from 1.9.0 to 1.9.1 #4168

Workflow file for this run

name: Run unit tests
on:
workflow_dispatch:
pull_request:
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 24
cache: 'npm'
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci
- name: Build GQL types
run: PUBLIC_GQL_URL=https://gql-api.drips.network/ npm run gql:build
- name: Svelte Kit Sync
run: npx svelte-kit sync
- name: Run tests
run: npm run test:unit