-
Notifications
You must be signed in to change notification settings - Fork 438
39 lines (37 loc) · 1.05 KB
/
tester.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
name: Tester
on: [push, pull_request]
jobs:
tester:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
repository: hexojs/hexo-starter
- name: Use Node.js
uses: actions/setup-node@v4
- name: Install Dependencies
run: npm install
- name: Install hexo-tag-embed
run: npm install hexo-tag-embed
- uses: actions/checkout@v4
with:
path: themes/next
- uses: actions/checkout@v4
with:
repository: SukkaLab/hexo-many-posts
path: source/_posts/hexo-many-posts
- run: npx hexo config theme next
- uses: DamianReeves/write-file-action@master
with:
path: themes/next/scripts/error.js
contents: |
hexo.log.error = function(...params) {
console.error("ERROR", ...params);
process.exit(1);
}
- name: Test
run: npx hexo g