Skip to content

Commit

Permalink
add CI step to ensure dist/exercises.json is always up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhonas committed Apr 30, 2023
1 parent 9cb649e commit d5da514
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
run: make install
- name: Lint JSON to ensure it conforms with schema
run: make lint
- name: Ensure dist/exercises.json is up to date
run: |
mv dist/exercises{,.original}.json
make dist/exercises.json
diff -q dist/exercises{,.original}.json
test:
runs-on: ubuntu-22.04
steps:
Expand Down

0 comments on commit d5da514

Please sign in to comment.