Skip to content
This repository was archived by the owner on Nov 20, 2021. It is now read-only.

Commit 3ad5471

Browse files
committed
Switch to GitHub from Travis
Travis ended their support of open source. Moving to GitHub makes things easier going forward.
1 parent ffb099a commit 3ad5471

File tree

4 files changed

+24
-22
lines changed

4 files changed

+24
-22
lines changed

.github/workflows/ci.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Use Node.js 16.x
16+
uses: actions/setup-node@v2
17+
with:
18+
node-version: 16.x
19+
cache: 'npm'
20+
- run: npm ci
21+
- run: npm run coverage

.travis.yml

-17
This file was deleted.

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:8.5-alpine
1+
FROM node:16.13.0-alpine3.12
22

33
LABEL maintainer "Michael J. Herold <[email protected]>"
44

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
# Code Climate Sass-Lint Engine
22

3-
[![Build Status](https://travis-ci.org/michaelherold/codeclimate-sass-lint.svg)][travis]
4-
[![Code Climate](https://codeclimate.com/github/michaelherold/codeclimate-sass-lint/badges/gpa.svg)][codeclimate]
3+
[![Build Status](https://github.com/michaelherold/codeclimate-sass-lint/actions/workflows/ci.yml/badge.svg)](https://github.com/michaelherold/codeclimate-sass-lint/actions/workflows/ci.yml)
54
[![Inline docs](http://inch-ci.org/github/michaelherold/codeclimate-sass-lint.svg?branch=master)][inch]
65

7-
[codeclimate]: https://codeclimate.com/github/michaelherold/codeclimate-sass-lint
6+
[ci]: https://github.com/michaelherold/codeclimate-sass-lint/actions/workflows/ci.yml
87
[inch]: http://inch-ci.org/github/michaelherold/codeclimate-sass-lint
9-
[travis]: https://travis-ci.org/michaelherold/codeclimate-sass-lint
108

119
Have you ever wanted to know exactly how good you are at writing consistent Sass? Well, look no more! By using this Code Climate engine, you can harness the power of [sass-lint] to score your code.
1210

0 commit comments

Comments
 (0)