Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 69521f6

Browse files
authored
Merge pull request #54 from atom/migrate-to-gh-actions
Migrate to Github Actions
2 parents 0c01abc + 30168dc commit 69521f6

File tree

3 files changed

+22
-20
lines changed

3 files changed

+22
-20
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
Build:
7+
runs-on: ubuntu-latest
8+
env:
9+
NODE_VERSION: 4.4.7
10+
CC: clang
11+
CXX: clang++
12+
npm_config_clang: 1
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v2
16+
with:
17+
node-version: 6
18+
- name: Install Dependencies
19+
run: npm install
20+
- name: Test
21+
run: npm run test

.travis.yml

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

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# scandal - Scandalous directory scanning and searching
22

3-
[![Build Status](https://travis-ci.org/atom/scandal.svg?branch=master)](https://travis-ci.org/atom/scandal)
4-
[![Deps](https://david-dm.org/atom/scandal.svg)](https://david-dm.org/atom/scandal)
3+
[![CI](https://github.com/atom/scandal/actions/workflows/ci.yml/badge.svg)](https://github.com/atom/scandal/actions/workflows/ci.yml)
54

65
`scandal` provides two utilities:
76

0 commit comments

Comments
 (0)