Skip to content

Commit

Permalink
Migrate to GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Aug 9, 2021
1 parent 2c72442 commit 7ff1f53
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 2 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,62 @@
name: CI
on: [push, pull_request]
jobs:

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-lint-modules-${{ hashFiles('**/yarn.lock') }}
- uses: actions/setup-node@v2
with:
node-version: 14.x
- run: yarn install
- run: yarn run lint

test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version:
- 12.x
- 14.x
- 16.x
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Ensure line endings are consistent
run: git config --global core.autocrlf input
- name: Check out repository
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-test-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install
- name: Build project
run: yarn run build
- name: Run tests
run: yarn run test
- name: Submit coverage results
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.node-version }}
parallel: true

coveralls:
needs: test
runs-on: ubuntu-latest
steps:
- name: Consolidate test coverage from different jobs
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
1 change: 0 additions & 1 deletion .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# EARL-Badge.js

[![Build Status](https://travis-ci.org/rubensworks/earl-badge.js.svg?branch=master)](https://travis-ci.org/rubensworks/earl-badge.js)
[![Build status](https://github.com/rubensworks/earl-badge.js/workflows/CI/badge.svg)](https://github.com/rubensworks/earl-badge.js/actions?query=workflow%3ACI)
[![Coverage Status](https://coveralls.io/repos/github/rubensworks/earl-badge.js/badge.svg?branch=master)](https://coveralls.io/github/rubensworks/earl-badge.js?branch=master)
[![npm version](https://badge.fury.io/js/earl-badge.svg)](https://www.npmjs.com/package/earl-badge)

Expand Down

0 comments on commit 7ff1f53

Please sign in to comment.