chore: Update git clone command to include recursive flag

The git clone command in the README.md file has been updated to include the `--recursive` flag. This flag ensures that the Zen browser components submodule is cloned along with the main repository. This change improves the setup process for new users and ensures that all necessary dependencies are included.
This commit is contained in:
Mauro Balades
2024-08-06 11:30:44 +02:00
parent 3c04945df6
commit c61eb6d28a
8 changed files with 43 additions and 299 deletions

View File

@@ -30,8 +30,11 @@ jobs:
with:
node-version: 20
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install pnpm
run: npm install -g pnpm
@@ -87,8 +90,10 @@ jobs:
with:
node-version: 20
- name: Checkout
uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install pnpm
run: npm install -g pnpm
@@ -139,6 +144,7 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup git
run: |
@@ -244,6 +250,9 @@ jobs:
node-version: 20
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: |
@@ -292,8 +301,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Update repo
uses: actions/checkout@v4
- uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
- name: Git Pull
run: git pull

View File

@@ -25,6 +25,9 @@ jobs:
node-version: 20
- uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
# Give the runner some swap space in an attempt to stop gkrust from crashing the build
- name: Set Swap Space

View File

@@ -30,7 +30,10 @@ jobs:
with:
python-version: '3.11'
- uses: actions/checkout@v4
- uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup git
run: |

View File

@@ -29,7 +29,10 @@ jobs:
with:
node-version: 20
- uses: actions/checkout@v4
- uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
# Give the runner some swap space in an attempt to stop gkrust from crashing the build
- name: Set Swap Space