Skip to content

automatic update

automatic update #3117

Workflow file for this run

name: check
on: {workflow_dispatch, push: {branches: [main]}, pull_request}
jobs:
prettier:
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
- uses: cachix/install-nix-action@v30
- run: nix run .#nodePackages.prettier -- --config ./prettier.config.js --check .
nixpkgs-fmt:
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
- uses: cachix/install-nix-action@v30
- run: nix run .#nixpkgs-fmt -- --check .
statix:
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
- uses: cachix/install-nix-action@v30
- run: nix run .#statix -- check
deadnix:
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
- uses: cachix/install-nix-action@v30
- run: nix run .#deadnix -- -f -_ -l .
vale:
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
- uses: cachix/install-nix-action@v30
- run: nix profile install .#{vale,fd}
- run: vale sync && vale $(fd --glob --hidden '*.md')