diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 545a3f81..ed1cde69 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -37,9 +37,8 @@ jobs: uses: actions/setup-node@v1 with: node-version: 16 - - run: yarn - - run: node lib/Config/Defaults.js --config > expected-config.sample.yml - - run: cmp --silent config.sample.yml expected-config.sample.yml + - run: yarn --ignore-scripts && yarn build:app + - run: node lib/Config/Defaults.js --config | diff config.sample.yml - test: runs-on: ubuntu-latest strategy: diff --git a/changelog.d/97.misc b/changelog.d/97.misc new file mode 100644 index 00000000..06691c80 --- /dev/null +++ b/changelog.d/97.misc @@ -0,0 +1 @@ +CI jobs now report the diff between the generated config and the in-tree sample config.