Skip to content

Commit

Permalink
updating github install and adding lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ebsi-bblake committed Apr 6, 2023
1 parent 92209a1 commit 8fe9a71
Show file tree
Hide file tree
Showing 3 changed files with 7,288 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
- name: Setup PNPM
# uses: pnpm/action-setup@35ab4267a1a21c8e8cb1c087cf1642e891ff57bd
uses: pnpm/[email protected]
- run: pnpm install --frozen-lockfile
- run: pnpm install --prefer-frozen-lockfile
- run: pnpm run lint
- run: pnpm run build
4 changes: 3 additions & 1 deletion content/1-reactivity/1-declare-state/mithril/Name.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ import m from "mithril";
export default function Name() {
let name = "John";

return { view: () => m("h1", name) };
return {
view: () => m("h1", name),
};
}
Loading

0 comments on commit 8fe9a71

Please sign in to comment.