usimple-saleor-sdk
Version:
This package contains all queries and mutations that are used in our sample storefront. It can be used for semi-custom or fully-custom (with ability to extend existing queries) storefront solutions.
26 lines (25 loc) • 634 B
YAML
version: 2
jobs:
build:
working_directory: ~/app
docker:
- image: circleci/node:12.16.3-browsers
steps:
- checkout
- restore_cache:
keys:
- cache-{{ .Branch }}-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: npm ci
- save_cache:
key: cache-{{ .Branch }}-{{ checksum "package.json" }}
paths:
- ~/.npm
- ~/.cache
- run:
name: Run typescript checker
command: npx tsc --noEmit
- run:
name: Build application
command: npm run build