LibCal check #575
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
# This workflow will check that appointments are available for all consultants | |
# listed in LibCal. When there are no appointments available, it's usually | |
# because the user's Exchange connector needs to be re-authorized. | |
name: LibCal check | |
on: | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: tools/check-consultation-calendars | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: npm ci | |
- run: npm run build --if-present | |
- run: node index.js |