Skip to content

goose, actions, pages #1

goose, actions, pages

goose, actions, pages #1

Workflow file for this run

name: ci
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v4
- name: set up go
uses: actions/setup-go@v4
with:
go-version: "1.21.x"
- name: run tests
run: go test -cover ./...
- name: build
run: go build -v ./... -o main
- uses: actions/setup-node@v4
with:
node-version: '22'
- run: |
cd client

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

View workflow run for this annotation

GitHub Actions / .github/workflows/cicd.yml

Invalid workflow file

You have an error in your yaml syntax on line 32
npm i
npm run build
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.PAGES_TOKEN }}
publish_dir: ./client/dist