Skip to content

Commit

Permalink
Add a build job to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
WardBrian committed Jun 27, 2024
1 parent 7b7ba5c commit dd66761
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,20 @@ jobs:
run: cd gui; yarn
- name: Test
run: cd gui; yarn test

frontend-build:
name: yarn build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
cache-dependency-path: gui/yarn.lock
- name: Install dependencies
run: cd gui; yarn
- name: Build
run: cd gui; yarn build

0 comments on commit dd66761

Please sign in to comment.