hugoWebsite/.circleci/config.yml

17 lines
283 B
YAML
Raw Normal View History

2022-11-03 01:31:36 +01:00
version: '2.1'
2022-11-03 01:27:27 +01:00
orbs:
2022-11-03 01:36:09 +01:00
node: circleci/node@5.0.3
2022-11-03 01:31:36 +01:00
jobs:
test:
executor:
name: node/default
tag: '16'
steps:
- checkout
- node/install-packages:
pkg-manager: yarn
- run:
command: yarn run test
name: Run YARN tests