Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 25 additions & 14 deletions .github/workflows/git-clean.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,33 @@ jobs:
submodules: recursive
fetch-depth: 0

- name: Install Nix 1/2
uses: DeterminateSystems/nix-installer-action@main
with:
determinate: true
- name: Install Nix 2/2
uses: DeterminateSystems/flakehub-cache-action@main
- run: exit 0

# - name: Install Nix 1/2
# uses: DeterminateSystems/nix-installer-action@main
# with:
# determinate: true
# - name: Install Nix 2/2
# uses: DeterminateSystems/flakehub-cache-action@main

- name: Prepare Sushi Lib
run: ./prep-sushi.sh
# - name: Prepare Sushi Lib
# run: ./prep-sushi.sh

- name: Install Dependencies
run: nix develop -c npm install
# - name: Install Dependencies
# run: nix develop -c npm install

- name: Lint
run: nix develop -c npm run lint
# - name: Lint
# run: nix develop -c npm run lint

- run: git diff --exit-code
# - run: git diff --exit-code

- uses: rainlanguage/github-chore/.github/actions/npm-blacklist@main
# - uses: rainlanguage/github-chore/.github/actions/npm-blacklist@main

- name: Send Telegram notification
if: always() # This ensures it runs regardless of previous step outcomes
uses: rainlanguage/github-chore/.github/actions/telegram-status-report@2025-12-15-tg-ci-status-reporter
with:
status: ${{ job.status }}
message: "some extra msgggggg"
telegram-bot-token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
telegram-chat-id: ${{ vars.TELEGRAM_CHAT_ID }}
Loading