From 95c8b9c146648b1d518a2fa275a335adf4a841c4 Mon Sep 17 00:00:00 2001 From: Mauran Date: Wed, 12 Jun 2024 17:05:02 +0200 Subject: [PATCH] ci: remove lint Signed-off-by: Mauran --- .github/workflows/main.yaml | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 2dd52c4..c5e5887 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -6,43 +6,6 @@ on: - "v[0-9]+.[0-9]+.[0-9]+" jobs: - checks-api: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: '1.16' # Adjust Go version if needed - - - name: Install dependencies - run: go mod download - working-directory: ./api - - - name: Run linter - run: | - go get github.com/golangci/golangci-lint/cmd/golangci-lint - golangci-lint run - working-directory: ./api - - checks-web: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - - name: Install Node.js - uses: actions/setup-node@v2 - with: - node-version: '14' # Adjust Node.js version if needed - - - name: Install modules - run: npm install - working-directory: ./frontend - - - name: Run ESLint - run: npm run lint - working-directory: ./frontend build_and_push: runs-on: ubuntu-latest