Skip to content

Commit

Permalink
merged
Browse files Browse the repository at this point in the history
  • Loading branch information
tssweeney committed Oct 30, 2024
2 parents 7951875 + e85bdc1 commit 7e76f51
Show file tree
Hide file tree
Showing 136 changed files with 22,671 additions and 800 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/weave-node-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Node.js Tests

on:
push:

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: false
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
cache-dependency-path: sdks/node/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
working-directory: sdks/node
- name: Run tests
run: pnpm test
working-directory: sdks/node
env:
WANDB_API_KEY: ${{ secrets.WANDB_API_KEY }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ gha-creds-*.json
.nox
*.log
*/file::memory:?cache=shared
weave/trace_server/model_providers
Loading

0 comments on commit 7e76f51

Please sign in to comment.