Skip to content

Commit

Permalink
Fix CI frontend linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mircearoata committed Feb 4, 2024
1 parent 6917887 commit da819f7
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install Wails
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest

- name: Run GoReleaser
- name: Run GoReleaser Snapshot
uses: goreleaser/goreleaser-action@v5
with:
version: latest
Expand Down Expand Up @@ -73,6 +73,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}

- uses: pnpm/action-setup@v2
with:
version: ${{ env.PNPM_VERSION }}
Expand All @@ -82,6 +86,12 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
cache: 'pnpm'
cache-dependency-path: frontend

- name: Install Wails
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest

- name: Generate wails bindings
run: wails generate module

- name: Install dependencies
working-directory: frontend
Expand Down

0 comments on commit da819f7

Please sign in to comment.