Skip to content

Commit

Permalink
Add support to git modules in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Sep 25, 2024
1 parent 4bee8ee commit a29c405
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
node-version: ${{matrix.node}}
check-latest: true
cache: npm
- name: Initialize git submodules
shell: bash
run: git submodule init && git submodule update
- name: Install & build
shell: bash
run: npm install && npm run build
Expand All @@ -49,6 +52,9 @@ jobs:
node-version: ${{matrix.node}}
check-latest: true
cache: npm
- name: Initialize git submodules
shell: bash
run: git submodule init && git submodule update
- name: Install & build
shell: bash
run: npm install && npm run build
Expand Down

0 comments on commit a29c405

Please sign in to comment.