Skip to content

Commit

Permalink
Attempt to force yarn version manually
Browse files Browse the repository at this point in the history
  • Loading branch information
CerealBoy committed Jul 6, 2024
1 parent a8990f1 commit 2dc379e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ jobs:
node-version: 20
cache: yarn
- name: 'Build Frontend'
run: yarn && yarn build
run: |
corepack enable
corepack install
yarn
yarn build
- name: 'Run Tests'
run: go test -cover -coverprofile=coverage.txt ./...
- name: 'Archive Results'
Expand Down

0 comments on commit 2dc379e

Please sign in to comment.