-
Notifications
You must be signed in to change notification settings - Fork 127
51 lines (49 loc) · 1.49 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Node.js Cross-platform CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node-version: [8.x, 10.x, 12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
shell: bash
- name: npm test
run: npm test
shell: bash
env:
CI: true
- name: npm i -g
run: npm i -g
shell: bash
- name: good-first-issue babel
run: good-first-issue babel --auth $PERSONAL_ACCESS_TOKEN
shell: bash
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: good-first-issue github
run: good-first-issue github --auth $PERSONAL_ACCESS_TOKEN
shell: bash
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: good-first-issue golang/dep
run: good-first-issue golang/dep --auth $PERSONAL_ACCESS_TOKEN
shell: bash
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: good-first-issue fastify -f
run: good-first-issue fastify -f --auth $PERSONAL_ACCESS_TOKEN
shell: bash
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: good-first-issue -h
run: good-first-issue -h
shell: bash