Skip to content

attempt at artifact generation #2

attempt at artifact generation

attempt at artifact generation #2

Workflow file for this run

name: Build (On Push)
on:
push:
jobs:
build:
runs-on: ubuntu-latest
name: Build
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '14.x'
cache: 'npm'
- run: npm ci
- run: npx browserslist@latest --update-db
- run: npm run build
# - run: npm test
- uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: mavedb-ui
path: /app/dist/
if-no-files-found: error
- run: echo 'Artifact ID is ${{ steps.artifact-upload-step.outputs.artifact-id }}'