Skip to content

Commit

Permalink
Trying base image (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaisarma authored Apr 30, 2021
1 parent c7651cc commit 242f0cc
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 37 deletions.
36 changes: 0 additions & 36 deletions .travis.yml

This file was deleted.

5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Bullet UI

[![Build Status](https://travis-ci.com/bullet-db/bullet-ui.svg?branch=master)](https://travis-ci.com/bullet-db/bullet-ui) [![Code Climate](https://codeclimate.com/github/bullet-db/bullet-ui/badges/gpa.svg)](https://codeclimate.com/github/bullet-db/bullet-ui) [![Test Coverage](https://codeclimate.com/github/bullet-db/bullet-ui/badges/coverage.svg)](https://codeclimate.com/github/bullet-db/bullet-ui/coverage) [![GitHub release](https://img.shields.io/github/release/bullet-db/bullet-ui.svg)](https://github.com/bullet-db/bullet-ui/releases/latest)
[![Build Status](https://cd.screwdriver.cd/pipelines/7227/badge)](https://cd.screwdriver.cd/pipelines/7227)
[![Code Climate](https://codeclimate.com/github/bullet-db/bullet-ui/badges/gpa.svg)](https://codeclimate.com/github/bullet-db/bullet-ui)
[![Test Coverage](https://codeclimate.com/github/bullet-db/bullet-ui/badges/coverage.svg)](https://codeclimate.com/github/bullet-db/bullet-ui/coverage)
[![GitHub release](https://img.shields.io/github/release/bullet-db/bullet-ui.svg)](https://github.com/bullet-db/bullet-ui/releases/latest)

## Introduction

Expand Down
27 changes: 27 additions & 0 deletions screwdriver.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
cache:
pipeline: ["node_modules"]

shared:
image: timbru31/node-chrome:10
environment:
SD_SONAR_OPTS: '-Dsonar.sources=app -Dsonar.javascript.lcov.reportPaths=coverage/lcov.info'
annotations:
screwdriver.cd/cpu: HIGH
screwdriver.cd/ram: TURBO

jobs:
main:
requires: [~pr, ~commit]
secrets:
- CC_TEST_REPORTER_ID
steps:
- build: yarn
- lint-template: yarn lint:hbs
- lint-js: yarn lint:js
- update-browsers: npx browserslist@latest --update-db
- test: yarn test
- coverage: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter format-coverage -t lcov -o coverage/codeclimate.json coverage/lcov.info
./cc-test-reporter upload-coverage

0 comments on commit 242f0cc

Please sign in to comment.