Skip to content

Commit

Permalink
feat: add demo bootstrap 5 custom component, upgrade dependencies (#893)
Browse files Browse the repository at this point in the history
  • Loading branch information
scttcper committed Aug 5, 2021
1 parent e6ee99b commit f2c4c42
Show file tree
Hide file tree
Showing 8 changed files with 5,399 additions and 4,683 deletions.
20 changes: 9 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
version: 2.1
orbs:
browser-tools: circleci/browser-tools@1.1.0
node: circleci/node@4
browser-tools: circleci/browser-tools@1
codecov: codecov/codecov@1
jobs:
test:
docker:
Expand All @@ -9,25 +11,19 @@ jobs:
CHROME_BIN: '/usr/bin/google-chrome'
steps:
- browser-tools/install-chrome
- browser-tools/install-chromedriver
- checkout
- run:
name: npm-install
command: npm ci
- run:
name: test
command: npm run test:ci
- node/install-packages
- run:
name: lint
command: npm run lint
- run:
name: codecov
command: bash <(curl -s https://codecov.io/bash)
- codecov/upload
release:
docker:
- image: cimg/node:current
steps:
- checkout
- run: npm ci
- node/install-packages
- run: npm run build
- run: cd dist && npx semantic-release

Expand All @@ -42,5 +38,7 @@ workflows:
branches:
only:
- master
context:
- npm
requires:
- test

0 comments on commit f2c4c42

Please sign in to comment.