2020-04-02 17:32:59 +00:00
|
|
|
version: 2.1
|
|
|
|
|
|
|
|
orbs:
|
2022-12-06 16:53:36 +00:00
|
|
|
node: circleci/node@5.0.3
|
2020-04-02 17:32:59 +00:00
|
|
|
yarn: substantial/yarn@3.10.2
|
|
|
|
node-build: substantial/node-build@2.3.0
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
executor:
|
|
|
|
name: node/default
|
2022-12-06 17:01:45 +00:00
|
|
|
tag: '18.12.1'
|
2020-04-02 17:32:59 +00:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- yarn/install:
|
|
|
|
cache-version: v2
|
|
|
|
yarn-audit: false
|
2022-10-25 13:18:21 +00:00
|
|
|
yarn-version: 1.22.19
|
2020-04-02 17:32:59 +00:00
|
|
|
- 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
|