Skip to content

Commit fdc0210

Browse files
committed
Try to fix CI test
1 parent a5d8850 commit fdc0210

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
const fs = require('fs')
4242
const assert = require('assert').strict;
4343
44-
const expected = fs.readFileSync("README.md", "utf-8")
44+
const expected = fs.readFileSync("README.md", "utf8")
4545
const release = await github.rest.repos.getReleaseByTag({
4646
...context.repo,
4747
tag: "ci-test-${{ matrix.os }}-${{ github.run_id }}",
@@ -72,7 +72,7 @@ jobs:
7272
const fs = require('fs')
7373
const assert = require('assert').strict;
7474
75-
const expected = fs.readFileSync("README.md", "utf-8")
75+
const expected = fs.readFileSync("README.md", "utf8")
7676
const release = await github.rest.repos.getReleaseByTag({
7777
...context.repo,
7878
tag: "ci-test-${{ matrix.os }}-${{ github.run_id }}",

0 commit comments

Comments
 (0)