Skip to content

Bump @types/node from 22.5.5 to 22.13.10 in /sdk #176

Bump @types/node from 22.5.5 to 22.13.10 in /sdk

Bump @types/node from 22.5.5 to 22.13.10 in /sdk #176

Workflow file for this run

name: SDK
on: [pull_request]
env:
FOUNDRY_PROFILE: ci
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./sdk
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
always-auth: true
- run: npm ci
- run: npx prettier --check {examples,src,test}
- run: npm run lint
- name: Run tests
run: npm test