This repository has been archived by the owner on Aug 25, 2024. It is now read-only.
chore(deps): bump lucide-react from 0.301.0 to 0.354.0 #774
Workflow file for this run
This file contains 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 | |
on: | |
pull_request: | |
branches: ["*"] | |
push: | |
branches: ["develop"] | |
merge_group: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup | |
uses: ./.github/setup | |
- name: Lint | |
run: pnpm next lint | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup | |
uses: ./.github/setup | |
- name: Format | |
run: pnpm format:check | |
typecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup | |
uses: ./.github/setup | |
- name: Typecheck | |
run: pnpm type:check | |
comment-if-failed: | |
if: ${{ always() }} | |
needs: [lint, format, typecheck] | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: juliusmarminge/gh-failed-action-commenter@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
FIXES: '{ "format": "format", "lint": "lint:fix" }' |