Skip to content

feat: v3 of salable api added #486

feat: v3 of salable api added

feat: v3 of salable api added #486

Workflow file for this run

name: Build
on:
push:
branches: ["main"]
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Build package
environment: Production
timeout-minutes: 15
runs-on: ${{ matrix.os }}
env:
SALABLE_BASE_URL: ${{ secrets.SALABLE_BASE_URL }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x.x
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run build