squidex-client-manager
Version:
a client for interacting with the Squidex API
30 lines (29 loc) • 713 B
YAML
version: 2
jobs:
build:
working_directory: ~/s
docker:
- image: circleci/node:stretch
steps:
- checkout
- run:
name: 'Install Yarn'
command: |
curl -o- -L https://yarnpkg.com/install.sh | bash
- run:
name: 'Install dependencies'
command: |
yarn install
- run:
name: 'Fix path to module'
command: |
sed -i -e "s=squidex-client-manager=../src/index.js=" ~/s/examples/*
- run:
name: 'Run eslinter'
command: |
yarn run lint-fix
- run:
name: 'Run tests'
command: |
yarn run test
- run: echo DONE