feat: adding delete command and deprecate eject command #616
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: Lint | |
on: | |
pull_request: | |
workflow_call: | |
jobs: | |
code: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23" | |
cache: false # Disable cache since golangci-lint does its own caching | |
- name: Lint source code | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
version: latest | |
commits: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install commitlint | |
run: | | |
npm install @commitlint/config-conventional | |
npm install commitlint | |
- name: Validate current commit (last commit) with commitlint | |
if: github.event_name == 'push' | |
run: npx commitlint --last --verbose | |
- name: Validate PR title with commitlint | |
if: github.event_name == 'pull_request' | |
run: echo '${{ github.event.pull_request.title }}' | npx commitlint --verbose |