Skip to content

docs: Add pricing CTA, badges, and Why OilPriceAPI section to README #2

docs: Add pricing CTA, badges, and Why OilPriceAPI section to README

docs: Add pricing CTA, badges, and Why OilPriceAPI section to README #2

Workflow file for this run

name: Test Node SDK
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ["18", "20", "22"]
steps:
- uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: TypeScript build check
run: npm run build
- name: Run tests
run: npm test