Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

No shelljs and dependency refresh #33

Merged
merged 8 commits into from
Sep 12, 2020
40 changes: 31 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,32 @@
language: node_js
node_js:
- '8'
- '10'
- '12'
- '14'
script:
- npm test
after_script:
- npm run publish-coverage

stages:
- lint
- test

jobs:
include:
- stage: lint
name: lint
script: npm run lint

- &test
stage: test
name: test-plugin-node8
node_js: '8'
script: npm run test:unit
after_script: npm run publish-coverage

- &test
stage: test
name: test-plugin-node10
script: npm run test:unit
node_js: '10'
- <<: *test
name: test-node12
node_js: '12'
- <<: *test
name: test-node14
node_js: '14'

cache: npm
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# bundle-phobia-cli

[![npm](https://img.shields.io/npm/v/bundle-phobia-cli.svg)](https://www.npmjs.com/package/bundle-phobia-cli)
[![Build Status](https://travis-ci.org/AdrieanKhisbe/bundle-phobia-cli.svg?branch=master)](https://travis-ci.org/AdrieanKhisbe/bundle-phobia-cli)
[![Build Status](https://travis-ci.com/AdrieanKhisbe/bundle-phobia-cli.svg?branch=master)](https://travis-ci.com/AdrieanKhisbe/bundle-phobia-cli)
[![codecov](https://codecov.io/gh/AdrieanKhisbe/bundle-phobia-cli/branch/master/graph/badge.svg)](https://codecov.io/gh/AdrieanKhisbe/bundle-phobia-cli)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

Expand Down