Skip to content

Commit

Permalink
Merge pull request #96 from flatironinstitute/ci/build
Browse files Browse the repository at this point in the history
Add a build job to CI
  • Loading branch information
WardBrian authored Jun 27, 2024
2 parents 7b7ba5c + dd66761 commit cdaaace
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 cdaaace

Please sign in to comment.