Skip to content

Commit 43c644f

Browse files
authored
Move to GitHub Actions (#132)
1 parent 556c95e commit 43c644f

File tree

3 files changed

+27
-10
lines changed

3 files changed

+27
-10
lines changed

Diff for: .github/workflows/main.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
test:
7+
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
node-version:
13+
- 14
14+
- 12
15+
- 10
16+
os:
17+
- ubuntu-latest
18+
- macos-latest
19+
- windows-latest
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: actions/setup-node@v1
23+
with:
24+
node-version: ${{ matrix.node-version }}
25+
- run: npm install
26+
- run: npm test

Diff for: .travis.yml

-9
This file was deleted.

Diff for: readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# conf [![Build Status](https://travis-ci.com/sindresorhus/conf.svg?branch=master)](https://travis-ci.com/github/sindresorhus/conf)
1+
# conf
22

33
> Simple config handling for your app or module
44

0 commit comments

Comments
 (0)