Skip to content

Commit 511c9f6

Browse files
committedJan 6, 2021
un-ignore .github folder
1 parent 0303402 commit 511c9f6

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed
 

‎.github/settings.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
_extends: 'open-source-project-boilerplate'

‎.github/workflows/ci.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
strategy:
8+
matrix:
9+
node-version: [10.x, 12.x, 14.x, 15.x]
10+
platform:
11+
- os: ubuntu-latest
12+
shell: bash
13+
- os: macos-latest
14+
shell: bash
15+
- os: windows-latest
16+
shell: bash
17+
- os: windows-latest
18+
shell: powershell
19+
fail-fast: false
20+
21+
runs-on: ${{ matrix.platform.os }}
22+
defaults:
23+
run:
24+
shell: ${{ matrix.platform.shell }}
25+
26+
steps:
27+
- name: Checkout Repository
28+
uses: actions/checkout@v1.1.0
29+
30+
- name: Use Nodejs ${{ matrix.node-version }}
31+
uses: actions/setup-node@v1
32+
with:
33+
node-version: ${{ matrix.node-version }}
34+
35+
- name: Install dependencies
36+
run: npm install
37+
38+
# Run for all environments
39+
- name: Run Tap Tests
40+
run: npm test -- -c -t0

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
!.gitattributes
2121
!map.js
2222
!index.js
23+
!.github
2324

2425
.*.swp
2526
node_modules/

0 commit comments

Comments
 (0)
Please sign in to comment.