Skip to content

Commit

Permalink
chore(deno): more minor fixes to the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cyco130 committed Aug 19, 2023
1 parent ffd92b4 commit 22bfa10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
with:
version: 8

- name: Set Node version to ${{ matrix.node_version }}
- name: Set Node version to 18
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
node-version: 18
cache: "pnpm"

- name: Install Deno
Expand Down
2 changes: 1 addition & 1 deletion deno-build/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function run() {
let readme = readFileSync(resolve(rootDir, "readme.md"), "utf8");
readme = readme.replaceAll(
/\.\/packages\/.+\/([a-z-]+)/g,
(_, match: string) => `./${match}`,
(_, match: string) => `./${match}/readme.md`,
);
writeFileSync(resolve(rootDir, "_deno/src/readme.md"), readme);

Expand Down

0 comments on commit 22bfa10

Please sign in to comment.