-
Notifications
You must be signed in to change notification settings - Fork 151
1/4 Nextra v3 with i18n by locale folders #504
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 6 commits
965b7cb
7b76e23
4ab2788
a985f4d
a8a962d
2617f7e
34b345d
c82a4c1
f74d9ed
c7c4a76
9ee3624
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,10 +19,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Set up env | ||
uses: the-guild-org/shared-config/setup@main | ||
with: | ||
nodeVersion: 20 | ||
packageManager: pnpm | ||
Comment on lines
-22
to
-25
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How does it know which version of Node to use if we don't specify it? (As for pnpm, I guess it either looks at which lockfile exists or at package.json's There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Yes.
Not automatically, you have to provide either the |
||
uses: the-guild-org/shared-config/setup@v1 | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
@@ -43,10 +40,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Set up env | ||
uses: the-guild-org/shared-config/setup@main | ||
with: | ||
nodeVersion: 20 | ||
packageManager: pnpm | ||
uses: the-guild-org/shared-config/setup@v1 | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
@@ -67,10 +61,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Set up env | ||
uses: the-guild-org/shared-config/setup@main | ||
with: | ||
nodeVersion: 20 | ||
packageManager: pnpm | ||
uses: the-guild-org/shared-config/setup@v1 | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
@@ -92,10 +83,7 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Set up env | ||
uses: the-guild-org/shared-config/setup@main | ||
with: | ||
nodeVersion: 20 | ||
packageManager: pnpm | ||
uses: the-guild-org/shared-config/setup@v1 | ||
|
||
- name: Install dependencies | ||
run: pnpm install | ||
|
benface marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
22.5.1 | ||
benface marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
20 | ||
22.5.1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:20-alpine as builder | ||
FROM node:22-alpine as builder | ||
|
||
ARG ENVIRONMENT | ||
ENV ENVIRONMENT=$ENVIRONMENT | ||
|
Uh oh!
There was an error while loading. Please reload this page.