Skip to content

Commit 35796b3

Browse files
committedSep 2, 2022
chore: update workflow config.
1 parent 8613b03 commit 35796b3

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
 

‎.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
build-deploy:
99
runs-on: ubuntu-20.04
1010
steps:
11-
- uses: actions/checkout@v2
12-
- uses: actions/setup-node@v2
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 14
14+
node-version: 16
1515

1616
- run: npm install
1717
- run: npm run build
@@ -22,7 +22,7 @@ jobs:
2222

2323
- run: npm i coverage-badges-cli markdown-to-html-cli -g
2424
- run: coverage-badges
25-
- run: markdown-to-html --output coverage/index.html
25+
- run: markdown-to-html --output coverage/index.html --github-corners https://github.com/jaywcjlove/rehype-attr
2626

2727
- name: Create Tag
2828
id: create_tag

‎.github/workflows/pull_request.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
build-deploy:
77
runs-on: ubuntu-20.04
88
steps:
9-
- uses: actions/checkout@v2
10-
- uses: actions/setup-node@v2
9+
- uses: actions/checkout@v3
10+
- uses: actions/setup-node@v3
1111
with:
12-
node-version: 14
12+
node-version: 16
1313

1414
- run: npm install
1515
- run: npm run build

0 commit comments

Comments
 (0)
Please sign in to comment.