Skip to content

Commit

Permalink
Add CI for web
Browse files Browse the repository at this point in the history
  • Loading branch information
tbidne committed Dec 9, 2024
1 parent 451c08b commit 04560c4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,29 @@ jobs:

- name: Compile & Test
run: nix build
web:
strategy:
fail-fast: false
matrix:
os:
- "macos-latest"
- "ubuntu-latest"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 23.x

- name: Install dependencies
run: |
cd web
npm install
- name: Build frontend
run: npx webpack
lint:
runs-on: "ubuntu-latest"
steps:
Expand Down

0 comments on commit 04560c4

Please sign in to comment.