This repository was archived by the owner on Dec 15, 2022. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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
64Native Node bindings to the Oniguruma regular expressions library.
75
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments