-
Notifications
You must be signed in to change notification settings - Fork 39
133 lines (103 loc) · 2.38 KB
/
roots.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
name: Store Roots
on:
push:
schedule:
- cron: 27 12 * * *
jobs:
compile:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 8
- run: npm install
- name: Transpile LiveScript
run: npm run pretest
- name: Compile C/C++
working-directory: n-api
run: |
npm install
npm test
node deploy exe
- uses: actions/upload-artifact@v2
with:
name: lib
path: lib/*
test:
needs: compile
runs-on: windows-latest
if: github.event_name == 'push' && !contains(github.event.head_commit.message, '[skip ci]')
strategy:
matrix:
node:
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
name: Test with Node v${{ matrix.node }}
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- uses: actions/download-artifact@v2
with:
name: lib
path: lib
- run: npm test -- --timeout 7000
if: false
- name: Fetch CAs
run: node .
- run: ls -al
working-directory: pem
shell: bash
store:
runs-on: windows-latest
needs: compile
if: github.event_name == 'schedule'
steps:
- name: Show event name
run: echo ${{ github.event_name }}
- name: Check out
uses: actions/checkout@v2
- name: Check out roots
uses: actions/checkout@v2
with:
ref: roots
path: roots
- name: Use Node.js
uses: actions/setup-node@v1
- name: Install packages
run: npm install
- uses: actions/download-artifact@v2
with:
name: lib
path: lib
- name: Fetch CAs
run: node .
- name: Store Root CAs
working-directory: roots
shell: bash
run: |
rm -rf *
cp ../pem/* .
rm *.pem
git config core.autocrlf false
git add --all
git config user.email "none"
git config user.name "GitHub Actions"
date > .commit
git diff-index --quiet HEAD || git commit -F .commit
git push