Skip to content

Commit

Permalink
Chore(ci): fix gh action build flow
Browse files Browse the repository at this point in the history
  • Loading branch information
nimdanitro committed Dec 19, 2023
1 parent 20ce554 commit f7a1d05
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,16 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
cache-dependency-path: 'ui/yarn.lock'
with:
node-version-file: ".nvmrc"
cache: "yarn"
cache-dependency-path: "ui/yarn.lock"
- uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
go-version-file: "go.mod"
- name: Install packages
run: yarn install --immutable
working-directory: ./ui
- name: Run tests
run: yarn test
working-directory: ./ui

0 comments on commit f7a1d05

Please sign in to comment.