CircleCI replaces travis for ci

main
Shaun Dern 2020-04-02 18:32:59 +01:00
parent 822d62e14e
commit f5ed604225
No known key found for this signature in database
GPG Key ID: 19E354FC9294F450
2 changed files with 32 additions and 9 deletions

32
.circleci/config.yml Normal file
View File

@ -0,0 +1,32 @@
version: 2.1
orbs:
node: circleci/node@1.1.6
yarn: substantial/yarn@3.10.2
node-build: substantial/node-build@2.3.0
jobs:
build:
executor:
name: node/default
tag: '12.14.1'
steps:
- checkout
- yarn/install:
cache-version: v2
yarn-audit: false
- node-build/eslint
- run:
name: Test
command: |
yarn test
- run:
name: dtslint
command: |
yarn dtslint
- run:
name: build
command: |
yarn build
- node-build/store-results
- node-build/release

View File

@ -1,9 +0,0 @@
sudo: false
language: node_js
node_js:
- '8'
- '10'
notifications:
email:
on_success: change
on_failure: always