Update endpoint for total scheduled duration #8
Workflow file for this run
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: 'Check proposals table order' | |
| on: | |
| pull_request: | |
| paths: | |
| - '[0-9][0-9][0-9][0-9]/[0-9][0-9].md' | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| # full history so the script can diff against the fork point, | |
| # however far back the PR branched | |
| fetch-depth: 0 | |
| - uses: ljharb/actions/node/install@main | |
| name: 'nvm install lts/* && npm install' | |
| - run: npm run check-proposals-order -- --base "$BASE_SHA" | |
| env: | |
| BASE_SHA: ${{ github.event.pull_request.base.sha }} |