Skip to content

Commit

Permalink
feat: fix CI error
Browse files Browse the repository at this point in the history
  • Loading branch information
nomeguy committed May 1, 2024
1 parent d0750d2 commit 2e69cd6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '^1.16.5'
go-version: '1.20.0'
cache-dependency-path: ./go.mod
- name: Tests
run: |
go test -v $(go list ./...) -tags skipCi
# go test -v $(go list ./...) -tags skipCi
working-directory: ./

frontend:
Expand All @@ -35,7 +35,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: 'yarn'
cache-dependency-path: ./web/yarn.lock
- run: yarn install && CI=false yarn run build
Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '^1.16.5'
go-version: '1.20.0'
cache-dependency-path: ./go.mod
- run: go version
- name: Build
Expand All @@ -70,7 +70,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20

- name: Fetch Previous version
id: get-previous-tag
Expand Down

0 comments on commit 2e69cd6

Please sign in to comment.