refactor: remove unused sidebar server component from dashboard (#962) #1928
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: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
- dev | |
release: | |
types: [released] | |
jobs: | |
avoid_redundancy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: cancel previous redundant builds | |
uses: styfle/cancel-workflow-action@0.12.1 | |
with: | |
access_token: ${{ github.token }} | |
lint: | |
runs-on: ubuntu-latest | |
name: lint project | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/setup | |
- run: pnpm lint | |
test: | |
runs-on: ubuntu-latest | |
name: test project | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/setup | |
- run: pnpm test | |
format: | |
runs-on: ubuntu-latest | |
name: format code | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/setup | |
- run: pnpm format | |
- name: commit changes | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "chore: format code" |