feat(europapark): add EP-Express shuttle wait times (#229) #140
This file contains hidden or 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: API Docs | |
| on: | |
| push: | |
| branches: [main] | |
| # Serialize gh-pages pushes. Without this, multiple merges in quick | |
| # succession race on `git push origin gh-pages` and one run fails with | |
| # `! [rejected] (fetch first)`. Letting in-flight runs finish (rather | |
| # than cancelling them) means the newest commit's docs always end up | |
| # published. | |
| concurrency: | |
| group: api-docs | |
| cancel-in-progress: false | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24.x | |
| - run: npm ci | |
| - run: npm run docs | |
| - name: Deploy to GitHub Pages | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
| publish_dir: ./docs |