updeep-remeda/.circleci/config.yml
Dane Weber 0484010abb
Node version upgraded from 12.14.1 to 18.12.1
Node 18 is the only version that won't EOL in less than a year.
2022-12-06 12:01:45 -05:00

34 lines
662 B
YAML

version: 2.1
orbs:
node: circleci/node@5.0.3
yarn: substantial/yarn@3.10.2
node-build: substantial/node-build@2.3.0
jobs:
build:
executor:
name: node/default
tag: '18.12.1'
steps:
- checkout
- yarn/install:
cache-version: v2
yarn-audit: false
yarn-version: 1.22.19
- 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