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/make-github-pseudonymous-again/rejuvenate/blob/b30cf223897adb74ca4a854799d50b21d7e1959d/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 Sep 4, 2022
1 parent 4e2d869 commit 2f50a35
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@v3

- 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@v2
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 @@ -11,7 +11,7 @@ set('abc').issubset( 'abcd' ) ; // true

[![License](https://img.shields.io/github/license/collection-abstraction/set.svg)](https://raw.githubusercontent.com/collection-abstraction/set/main/LICENSE)
[![Version](https://img.shields.io/npm/v/@collection-abstraction/set.svg)](https://www.npmjs.org/package/@collection-abstraction/set)
[![Build](https://img.shields.io/travis/collection-abstraction/set/main.svg)](https://travis-ci.com/collection-abstraction/set/branches)
[![Tests](https://img.shields.io/github/workflow/status/collection-abstraction/set/ci:test?event=push&label=tests)](https://github.com/collection-abstraction/set/actions/workflows/ci:test.yml?query=branch:main)
[![Dependencies](https://img.shields.io/librariesio/github/collection-abstraction/set.svg)](https://github.com/collection-abstraction/set/network/dependencies)
[![GitHub issues](https://img.shields.io/github/issues/collection-abstraction/set.svg)](https://github.com/collection-abstraction/set/issues)
[![Downloads](https://img.shields.io/npm/dm/@collection-abstraction/set.svg)](https://www.npmjs.org/package/@collection-abstraction/set)
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,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": "NODE_ENV=cover c8 --all --src src --reporter lcov --reporter text-summary --reporter text npm test",
"debug": "NODE_ENV=debug npm run test -- -st --fail-fast",
Expand All @@ -60,8 +61,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": {
"@failure-abstraction/error": "^6.0.1"
Expand Down

0 comments on commit 2f50a35

Please sign in to comment.