Skip to content

fixup: yaml

fixup: yaml #64

Workflow file for this run

name: ci
on:
pull_request:
types:
- opened
- synchronize
- reopened
branches:
- main
permissions:
contents: read
env:
GO_VERSION: 1.19.3
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Node
uses: actions/setup-node@v3
- run: npm ci
- name: Lint Gherkin
run: npm run gherkin-lint

Check failure on line 32 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 32
- name: Build sync binary
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4
with:
go-version: ${{ env.GO_VERSION }}
- run: make build-sync
- name: Build flagd-testbed Docker image
uses: docker/build-push-action@v4
with:
context: .
file: flagd/Dockerfile
push: false
- name: Build sync-testbed Docker image
uses: docker/build-push-action@v4
with:
context: .
file: sync/Dockerfile
push: false