Update dependency rollup to v4.59.0 [SECURITY] #65
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
| # This workflow will lint the entire codebase using the | |
| # `super-linter/super-linter` action. | |
| # | |
| # For more information, see the super-linter repository: | |
| # https://github.com/super-linter/super-linter | |
| name: Lint Codebase | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| packages: read | |
| statuses: write | |
| jobs: | |
| lint: | |
| name: Lint Codebase | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| id: checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Prepare Worker | |
| uses: ./.github/actions/prepare-nix | |
| - name: Run pre-commit | |
| run: nix develop --impure --command bash -c "pre-commit run --all-files" |