docs: Deno 2.9 updates (integration branch) #165
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: Freshness | |
| on: | |
| pull_request: | |
| branches: main | |
| jobs: | |
| freshness: | |
| name: last_modified freshness check | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Deno | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: canary | |
| - name: Check last_modified freshness | |
| env: | |
| BASE_SHA: ${{ github.event.pull_request.base.sha }} | |
| run: deno task check:freshness |