Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 19 additions & 6 deletions .github/workflows/sync-pr-to-monorepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
env:
NODE_VERSION: 20.x
GH_TOKEN: ${{ secrets.MONOREPO_SYNC_TOKEN }}
PR_NUMBER: ${{ github.event.pull_request.number }}
PR_TITLE: ${{ github.event.pull_request.title }}
Expand All @@ -29,16 +30,28 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: ${{env.NODE_VERSION}}

- name: Install dependencies
# Install project dependencies (including dev dependencies)
run: npm install
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-

- name: Installing dependencies
if: steps.cache.outputs.cache-hit != 'true'
uses: borales/actions-yarn@v4
with:
cmd: install --frozen-lockfile

- name: Install zx
run: npm install zx
run: yarn add zx

- name: Install monorepo-sync package
run: npm install git+https://github.com/formio/monorepo-sync.git
run: yarn add git+https://github.com/formio/monorepo-sync.git

- name: Clone Monorepo
run: |
gh repo clone formio/formio-monorepo monorepo -- --depth=1
Expand Down
Loading