chore(deps): bump actions/checkout from 6 to 7 #154
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: CI | |
| permissions: | |
| contents: read | |
| id-token: write # The OIDC ID token is used for authentication with JSR. | |
| on: | |
| push: | |
| branches: main | |
| pull_request: | |
| branches: main | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| services: | |
| redis: | |
| image: redis | |
| ports: | |
| # Maps port 6379 on service container to the host | |
| - 6379:6379 | |
| steps: | |
| - name: Setup repo | |
| uses: actions/checkout@v7 | |
| - name: Setup Deno | |
| uses: denoland/setup-deno@v2 | |
| with: | |
| cache: true | |
| # This is here, rather than at the end, so that uncommitted files created | |
| # by proceeding tasks don't interfere with the publishing process. | |
| - name: Publish | |
| if: github.event_name == 'push' | |
| run: deno publish | |
| - name: Check formatting, linting and run tests | |
| run: deno task ok |