Skip to content

Commit e7b28b3

Browse files
authored
Merge pull request #37 from ukyoda/release
Release (v0.5.5.)
2 parents db1945f + e69afef commit e7b28b3

File tree

5 files changed

+54
-19
lines changed

5 files changed

+54
-19
lines changed

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ end_of_line=lf
77
charset = utf-8
88
trim_trailing_whitespace = true
99

10-
[*.js]
10+
[{*.js,*.yaml}]
1111
indent_size=2
1212

1313
[*.md]
14-
trim_trailing_whitespace = false
14+
trim_trailing_whitespace = false

.github/workflows/ci.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: ogp-parser-ci
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
- release
8+
pull_request:
9+
branches:
10+
- develop
11+
- release
12+
13+
jobs:
14+
test:
15+
name: test job
16+
runs-on: ${{ matrix.os }}
17+
18+
strategy:
19+
matrix:
20+
os: [ubuntu-latest]
21+
node: [ 12 ]
22+
23+
steps:
24+
- name: Checkout
25+
uses: actions/checkout@main # リポジトリのチェックアウト
26+
27+
- name: Setup node env
28+
uses: actions/[email protected] # Node.jsのセットアップ
29+
with:
30+
node-version: ${{ matrix.node }} # 利用するNode.jsのバージョン
31+
32+
- name: Cache node_modules
33+
uses: actions/[email protected]
34+
with:
35+
path: ~/.npm
36+
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
37+
restore-keys: |
38+
${{ runner.os }}-node-
39+
40+
- name: Install dependencies # npm ciコマンド実行
41+
run: npm ci
42+
43+
- name: unit test
44+
run: npm test

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
1010
## 更新履歴
1111

12+
* 2021年 2月: v0.5.5リリース axiosのバージョン更新
1213
* 2020年 8月: v0.5.4リリース HTMLの文字コード対応が抜けていたので修正
1314
* 2020年 7月: v0.5.3リリース npm installできない問題を修正
1415
* 2020年 7月: v0.5.2リリース セキュリティアップデート(プルリク#27対応)

package-lock.json

Lines changed: 5 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "ogp-parser",
3-
"version": "0.5.4",
3+
"version": "0.5.5",
44
"private": false,
55
"dependencies": {
6-
"axios": "^0.19.2",
6+
"axios": "^0.21.1",
77
"cheerio": "^1.0.0-rc.3",
88
"fast-xml-parser": "^3.16.0",
99
"follow-redirects": "1.10.0",

0 commit comments

Comments
 (0)