Skip to content

Commit

Permalink
fix: generate correct dimensions fragment
Browse files Browse the repository at this point in the history
fixes #38
  • Loading branch information
tripodsan committed May 14, 2022
1 parent 31fdfd8 commit 28c48de
Show file tree
Hide file tree
Showing 5 changed files with 1,632 additions and 2,028 deletions.
58 changes: 28 additions & 30 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,47 +2,45 @@ version: 2.1
executors:
node14:
docker:
- image: circleci/node:14
environment:
NPM_CONFIG_PREFIX: ~/.npm-global
- image: cimg/node:14.19

orbs:
codecov: codecov/codecov@3.2.2

commands:
setup:
steps:
- checkout
- run:
name: install latest npm
command: sudo npm -g install npm
- run:
name: Installing Dependencies
command: npm ci
- run:
name: prepare test git user
command: git config --global user.email "circleci@example.com" && git config --global user.name "CircleCi Build"
- checkout
- run:
name: install latest npm
command: npm -g install npm
- run:
name: Installing Dependencies
command: npm ci
- run:
name: prepare test git user
command: git config --global user.email "circleci@example.com" && git config --global user.name "CircleCi Build"

jobs:
build:
executor: node14

steps:
- setup
- run: mkdir junit
- run:
name: Lint
command: npm run lint

- run:
name: Getting Code Coverage
command: npm run test-ci

- store_test_results:
path: junit

- store_artifacts:
path: junit
- setup
- run: mkdir junit
- run:
name: Lint
command: npm run lint
- run:
name: Getting Code Coverage
command: npm run test
- codecov/upload
- store_test_results:
path: junit
- store_artifacts:
path: junit

workflows:
version: 2
build:
jobs:
- build
- build
Loading

0 comments on commit 28c48de

Please sign in to comment.