Verify #332
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: Verify | |
permissions: {} | |
on: | |
pull_request: | |
push: | |
branches: | |
- feat/backend-lint | |
jobs: | |
generate: | |
name: Go generate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'backend/go.mod' | |
- name: Cache tofu binary | |
uses: actions/cache@v4 | |
with: | |
path: ./backend/internal/moduleindex/moduleschema/testtofu | |
key: tofu-binary | |
- name: Run go generate | |
working-directory: backend | |
run: go generate ./... | |
- name: Check if there are any changes | |
run: | | |
if [ "$(git diff | wc -l)" -ne 0 ]; then | |
echo "Changes detected after go generate. Please run go generate ./... and push your changes." | |
fi | |
tests: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'backend/go.mod' | |
- name: Cache tofu binary | |
uses: actions/cache@v4 | |
with: | |
path: ./backend/internal/moduleindex/moduleschema/testtofu | |
key: tofu-binary | |
- name: Run go generate | |
working-directory: backend | |
run: go generate ./... | |
# - name: Run tests | |
# working-directory: backend | |
# run: | | |
# go test ./... | |
frontend: | |
name: Frontend Lint and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
- name: Install dependencies | |
working-directory: frontend | |
run: | |
npm ci | |
- name: Run ESLint | |
working-directory: frontend | |
run: | |
npm run eslint | |
- name: Run Prettier Check | |
working-directory: frontend | |
run: | |
npm run prettier:check | |
- name: Run Tests | |
working-directory: frontend | |
run: | |
npm run test | |
backend-lint: | |
name: Backend Lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
modules: | |
- backend | |
- search/pg-indexer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'backend/go.mod' | |
- name: Backend Linting | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.62 | |
working-directory: ${{ matrix.modules }} |