Skip to content

Use the Double primative for JSON Schema "number" type #232

Use the Double primative for JSON Schema "number" type

Use the Double primative for JSON Schema "number" type #232

Workflow file for this run

name: Tests CI
on:
push:
branches: [ main ]
pull_request:
branches: [ '**' ]
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18.18.2'
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install 💾
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build & Publish Dry Run
run: npm publish --dry-run