mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-27 15:41:39 +01:00
18 lines
301 B
YAML
18 lines
301 B
YAML
|
|
version: 2.1
|
|
orbs:
|
|
node: circleci/node@1.1.6
|
|
jobs:
|
|
build-and-test:
|
|
executor:
|
|
name: node/default
|
|
steps:
|
|
- checkout
|
|
- node/with-cache:
|
|
steps:
|
|
- run: yarn
|
|
- run: npm test
|
|
workflows:
|
|
build-and-test:
|
|
jobs:
|
|
- build-and-test |