mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-01-16 22:04:21 -06:00
Separate github action into separete workflow files
This commit is contained in:
16
.github/workflows/frontend.yml
vendored
Normal file
16
.github/workflows/frontend.yml
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
|
||||
jobs:
|
||||
frontend:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with:
|
||||
node-version: '15'
|
||||
- name: build
|
||||
run: |
|
||||
cd src-ui/
|
||||
npm install -g @angular/cli
|
||||
npm install
|
||||
ng build --prod
|
||||
Reference in New Issue
Block a user