Skip to content

Commit cc3e112

Browse files
committed
chore: modernize repo and add github ci
1 parent 41dc988 commit cc3e112

File tree

7 files changed

+1595
-11
lines changed

7 files changed

+1595
-11
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
input.js

.github/workflows/nodejs.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: build
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
node-version: [8.x]
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- name: npm install, lint, and test
21+
run: |
22+
npm ci
23+
npm run lint
24+
npm test
25+
env:
26+
CI: true

.npmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Advent of Code 2018 - My Solutions
2-
[![Build Status](https://travis-ci.org/mariotacke/advent-of-code-2018.svg?branch=master)](https://travis-ci.org/mariotacke/advent-of-code-2018)
2+
[![Build Status](https://github.com/mariotacke/advent-of-code-2018/workflows/build/badge.svg)](https://github.com/mariotacke/advent-of-code-2018/actions)
33
[![Dependency Status](https://img.shields.io/david/mariotacke/advent-of-code-2018.svg)](https://david-dm.org/mariotacke/advent-of-code-2018)
44
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/mariotacke/advent-of-code-2018/master/LICENSE)
55

0 commit comments

Comments
 (0)