Skip to content

post comments fixes

post comments fixes #2

Workflow file for this run

---
name: pre-merge
on:
push:
branches:
- 'user/**'
- 'feature/**'
- 'improvement/**'
- 'bugfix/**'
- 'w/**'
- "q/*/**"
jobs:
tests:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: run fetch-mongodb-sharded
run: make -C solution-base/mongodb fetch-mongodb-sharded
- name: Check for changes
run: |
git diff --exit-code || { echo "Error: Changes detected after running 'make fetch-mongodb-sharded'. Please ensure step 4 is completed."; exit 1; }