ποΈ trash: Remove unused <AppointmentsForPatientStatic>
.
#596
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: ci:postinstall | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Continuous integration (test postinstall) | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout ποΈ | |
uses: actions/checkout@v4 | |
- name: Install πΎ | |
uses: ./.github/actions/install | |
- name: Test that `public/favicon.ico` is there π€ | |
run: | | |
test -f public/favicon.ico | |
- name: Test that `public/@fontsource/roboto` is there π€ | |
run: | | |
test -d public/@fontsource/roboto | |
- name: Test that `public/pdfjs-dist/build` is there π | |
run: | | |
test -d public/pdfjs-dist/build |