Skip to content

Commit

Permalink
🤖 config(github): Configure workflow to automate tests of changes.
Browse files Browse the repository at this point in the history
These changes were automatically generated by a transform whose code can be found at:
  - https://github.com/aureooms/rejuvenate/blob/057c4df07dfcd3ed83201b062803b05a252bf67f/src/transforms/github:workflow-configure-ci:test.js
Please contact the author of the transform if you believe there was an error.
  • Loading branch information
a-flying-potato authored and make-github-pseudonymous-again committed Mar 26, 2021
1 parent a78d431 commit d98f650
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 25 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci:test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: ci:test
on:
- push
- pull_request
jobs:
test:
name: Continuous integration (tests)
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2

- name: Install 🔧
uses: bahmutov/npm-install@v1
with:
install-command: yarn --frozen-lockfile --ignore-scripts
useRollingCache: true

- name: Test 🔬
run: yarn ci:test

- name: Publish coverage report 📃
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pairs.add('bc');

[![License](https://img.shields.io/github/license/aureooms/js-pairs.svg)](https://raw.githubusercontent.com/aureooms/js-pairs/main/LICENSE)
[![Version](https://img.shields.io/npm/v/@aureooms/js-pairs.svg)](https://www.npmjs.org/package/@aureooms/js-pairs)
[![Build](https://img.shields.io/travis/aureooms/js-pairs/main.svg)](https://travis-ci.com/aureooms/js-pairs/branches)
[![Tests](https://img.shields.io/github/workflow/status/aureooms/js-pairs/ci:test?event=push&label=tests)](https://github.com/aureooms/js-pairs/actions/workflows/ci:test.yml?query=branch:main)
[![Dependencies](https://img.shields.io/david/aureooms/js-pairs.svg)](https://david-dm.org/aureooms/js-pairs)
[![Dev dependencies](https://img.shields.io/david/dev/aureooms/js-pairs.svg)](https://david-dm.org/aureooms/js-pairs?type=dev)
[![GitHub issues](https://img.shields.io/github/issues/aureooms/js-pairs.svg)](https://github.com/aureooms/js-pairs/issues)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"build": "NODE_ENV=production microbundle",
"build-docs": "esdoc",
"build-gh-pages": "npm run build-docs",
"ci:test": "npm run lint-config && npm run lint && npm run cover",
"commit-msg": "commitlint --edit",
"cover": "c8 --all --src src --reporter=lcov npm test",
"debug": "NODE_ENV=debug npm run test -- -st --fail-fast",
Expand All @@ -52,8 +53,7 @@
"prepare": "npm run build",
"prepublishOnly": "pinst --disable",
"release": "np --message ':hatching_chick: release: Bumping to v%s.'",
"test": "ava",
"travis": "npm run lint-config && npm run lint && npm run cover"
"test": "ava"
},
"dependencies": {
"@aureooms/js-error": "^5.0.2",
Expand Down

0 comments on commit d98f650

Please sign in to comment.