Skip to content

Commit

Permalink
Merge pull request atom#54 from atom/migrate-to-gh-actions
Browse files Browse the repository at this point in the history
Migrate to Github Actions
  • Loading branch information
darangi authored Jun 15, 2021
2 parents 0c01abc + 30168dc commit 69521f6
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 20 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push]

jobs:
Build:
runs-on: ubuntu-latest
env:
NODE_VERSION: 4.4.7
CC: clang
CXX: clang++
npm_config_clang: 1
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 6
- name: Install Dependencies
run: npm install
- name: Test
run: npm run test
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# scandal - Scandalous directory scanning and searching

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

`scandal` provides two utilities:

Expand Down

0 comments on commit 69521f6

Please sign in to comment.