Skip to content

fix: align rating box #7

fix: align rating box

fix: align rating box #7

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: [ prod ]
types: [opened, synchronize, reopened]
jobs:
frontend-checks:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.17.x'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
# - name: Run tests
# run: npm test
- name: Build
run: npm run build
backend-checks:
runs-on: ubuntu-latest
working-directory: server

Check failure on line 31 in .github/workflows/pr-checks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-checks.yml

Invalid workflow file

You have an error in your yaml syntax on line 31
steps:
- uses: actions/checkout@v4
- name: Build and embed frontend
working-directory: .
run: make frontend
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test ./...
- name: Run linter
uses: golangci/[email protected]