Skip to content

Commit

Permalink
ci: fix setup node
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrytavern committed Sep 28, 2024
1 parent 368b49c commit 4cb7459
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Setup node js
uses: ./.github/workflows/setup-node
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: npm

- name: Install dependencies
run: npm ci

- name: Setup pages
uses: actions/configure-pages@v4
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default function Home() {
return <div></div>
return <div>Hello world</div>
}

0 comments on commit 4cb7459

Please sign in to comment.