Skip to content

MVP

MVP #56

Workflow file for this run

name: tests
on:
push:
pull_request:
branches:
- master
permissions:
contents: read
checks: write
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests
run: make test
lint-go:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
lint-proto:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup buf
uses: bufbuild/[email protected]
- name: Lint proto
run: make lint-proto
lint-front:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: 'front/package.json'
cache: 'pnpm'
cache-dependency-path: 'front/pnpm-lock.yaml'
- name: Install dependencies
run: pnpm install --frozen-lockfile
with:

Check failure on line 65 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 65, Col: 9): Unexpected value 'with'
working-directory: front
- name: Lint front
run: make lint-front