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

Commit aa7f727

Browse files
authored
Merge pull request #110 from atom/migrate-to-github-actions
Migrate to github actions
2 parents eba5efc + fb493cf commit aa7f727

4 files changed

Lines changed: 28 additions & 54 deletions

File tree

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
env:
6+
CI: true
7+
8+
jobs:
9+
Test:
10+
strategy:
11+
matrix:
12+
os: [ubuntu-latest, macos-latest, windows-latest]
13+
channel: [stable, beta]
14+
runs-on: ${{ matrix.os }}
15+
steps:
16+
- uses: actions/checkout@v1
17+
- uses: actions/setup-node@v2
18+
with:
19+
node-version: '14'
20+
- name: Install windows-build-tools
21+
if: ${{ matrix.os == 'windows-latest' }}
22+
run: |
23+
npm config set msvs_version 2019
24+
- name: Install dependencies
25+
run: npm i
26+
- name: Run tests
27+
run: npm run test

.travis.yml

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

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Oniguruma Node module
2-
[![macOS Build Status](https://travis-ci.org/atom/node-oniguruma.svg?branch=master)](https://travis-ci.org/atom/node-oniguruma)
3-
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/s9twhi451ef2butr/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/node-oniguruma/branch/master)
4-
[![Dependency Status](https://david-dm.org/atom/node-oniguruma.svg)](https://david-dm.org/atom/node-oniguruma)
2+
[![CI](https://github.com/atom/node-oniguruma/actions/workflows/ci.yml/badge.svg)](https://github.com/atom/node-oniguruma/actions/workflows/ci.yml)
53

64
Native Node bindings to the Oniguruma regular expressions library.
75

appveyor.yml

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

0 commit comments

Comments
 (0)