post comments fixes #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: pre-merge | |
on: | |
push: | |
branches: | |
- 'user/**' | |
- 'feature/**' | |
- 'improvement/**' | |
- 'bugfix/**' | |
- 'w/**' | |
- "q/*/**" | |
jobs: | |
tests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
- name: run fetch-mongodb-sharded | |
run: make 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 is completed."; exit 1; } |