Skip to content

Commit

Permalink
specify working directory for yarn ci jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
jdrews committed May 1, 2023
1 parent 15486e3 commit be01121
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/logstation-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@ jobs:

- name: Install web
run: yarn install
working-directory: ./web

- name: Build web with Yarn
run: yarn --cwd web build
run: yarn build
working-directory: ./web

- name: Set up Go
uses: actions/setup-go@v3
Expand All @@ -34,4 +36,4 @@ jobs:
run: go build -v ./...

- name: Test
run: go test -v ./...
run: go test -v ./...

0 comments on commit be01121

Please sign in to comment.