This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
tstatic/.circleci/config.yml

18 lines
400 B
YAML
Raw Normal View History

2018-01-28 11:29:54 +00:00
version: 2.0
jobs:
build:
docker:
2018-05-04 20:55:56 +01:00
- image: circleci/node:8
2018-01-28 11:29:54 +00:00
steps:
- checkout
- run:
name: Install dependencies
command: npm install
- run:
name: Build Project
command: npm run build
- run:
name: Run Tests
command: npm test