Skip to content

Commit

Permalink
chore: be more explicit that reset all is run with validation
Browse files Browse the repository at this point in the history
  • Loading branch information
KristianKjerstad authored and KristianKjerstad committed Aug 3, 2023
1 parent 23d217a commit d9a293a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Start DMSS
id: dmss
run: |
run: |
docker-compose run --rm dmss cat src/version.txt > dmss_version.txt
dmss_version=$(tail -n 1 dmss_version.txt)
docker-compose run --rm job-api cat version.txt > job_version.txt
Expand All @@ -70,14 +70,14 @@ jobs:
python -m venv .venv
source .venv/bin/activate
pip install dm-cli
./reset-all.sh
./reset-all.sh validate-entities
echo "version=$(dm --version)" >> "$GITHUB_OUTPUT"
working-directory: example/

- name: Install dependencies
run: |
npm install --package-lock-only
npm ci
npm install --package-lock-only
npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
Expand Down
4 changes: 2 additions & 2 deletions example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
- `docker-compose pull && docker-compose up -d`
4. Navigate to the `example` folder, then run shell script to load dmss data. If the command fails, try updating dm-cli
before retrying.
- `./reset-all.sh`
- `./reset-all.sh validate-entities`
5. Start the test app
- `yarn start:example`

Expand Down Expand Up @@ -65,7 +65,7 @@
6. Run
```
pip install dm-cli &&
dm reset app --validate-entities &&
dm reset app validate-entities &&
dm import-plugin-blueprints ../node_modules/@development-framework/dm-core-plugins &&
dm create-lookup example DemoDataSource/recipes
```
Expand Down

0 comments on commit d9a293a

Please sign in to comment.