Skip to content

Commit

Permalink
Add web job in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Ray committed Nov 23, 2023
1 parent c3684b3 commit d98b524
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/build-apps.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build apps

on:
push:
Expand Down Expand Up @@ -103,3 +103,27 @@ jobs:
with:
name: pikatorrent.aab
path: apps/app/*.aab

web:
name: web
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Install
run: npm ci

- name: Build
run: npm run build:web

- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: pikatorrent-web
path: apps/app/dist/

0 comments on commit d98b524

Please sign in to comment.