Skip to content

Commit

Permalink
Merge pull request #22 from bmaupin/migrate-to-github-actions
Browse files Browse the repository at this point in the history
Migrate to GitHub actions

Closes #21
  • Loading branch information
bmaupin committed Oct 19, 2021
2 parents 66463ce + 929b6dc commit 2e9bb3d
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 24 deletions.
22 changes: 0 additions & 22 deletions .circleci/config.yml

This file was deleted.

24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Source: https://github.com/actions/starter-workflows/blob/main/ci/node.js.yml

name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v2
with:
# Test with the latest LTS version of Node (https://nodejs.org/)
node-version: '14'
- run: npm ci
- run: npm run build --if-present
- run: npm test
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
[![CircleCI](https://circleci.com/gh/bmaupin/langtrends.svg?style=shield)](https://circleci.com/gh/bmaupin/langtrends)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/bmaupin/loopback/blob/master/LICENSE)
[![CI](https://github.com/bmaupin/langtrends/workflows/CI/badge.svg)](https://github.com/bmaupin/langtrends/actions)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/bmaupin/langtrends/blob/master/LICENSE)

---

Intentionally simple app for showing programming language trends

Built with:

- https://github.com/bmaupin/langtrends-api
- [React](https://reactjs.org/)
- [Semantic UI](https://react.semantic-ui.com/)
- [react-vis](https://uber.github.io/react-vis/)
- [github-colors](https://github.com/IonicaBizau/github-colors)

### Non-goals

- Showing languages other than the provided options
- Showing dates other than the provided ranges
- Any kind of analysis
Expand Down

0 comments on commit 2e9bb3d

Please sign in to comment.