| 123456789101112131415161718192021222324252627 |
- ---
- name: 'build-npm'
- description: builds the static dashboard files for the app
- runs:
- using: "composite"
- steps:
- - name: Setup Node
- uses: actions/setup-node@v3
- with:
- node-version: 16
- - name: Install NPM Dependencies
- shell: bash
- run: |
- cd dashboard
- npm i --legacy-peer-deps
- - name: Run NPM Build
- shell: bash
- run: |
- cd dashboard
- npm run build
- - name: Store NPM Static Files
- uses: actions/upload-artifact@v3
- with:
- name: npm-static-files
- path: dashboard/build/
- retention-days: 1
|