Skip to content

build(deps): bump the npm_and_yarn group across 1 directory with 1 update #4166

build(deps): bump the npm_and_yarn group across 1 directory with 1 update

build(deps): bump the npm_and_yarn group across 1 directory with 1 update #4166

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