Skip to content

Commit

Permalink
(ui) MIT version
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincobain2000 committed May 5, 2024
1 parent bc01ec9 commit 7ac3062
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/coveritup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
strategy:
matrix:
go-version: [latest]
node-version: [20]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -23,6 +24,10 @@ jobs:
with:
version: ${{ matrix.go-version }}

- name: Setup Node.js 20
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Install Tools
run: |
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,17 @@ jobs:
with:
version: 'mod'

- name: Setup Node.js ${{ matrix.node-versions }}
uses: actions/setup-node@v2
with:
node-version: 20

- name: Build Dist for Embed
working-directory: frontend
run: |
npm install
npm run build
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
Expand Down

0 comments on commit 7ac3062

Please sign in to comment.