24 lines
463 B
YAML
24 lines
463 B
YAML
name: build
|
|
run-name: build
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
name: build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: latest
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- uses: actions/upload-artifact@v3
|
|
env:
|
|
ACTIONS_RUNTIME_URL: "http:/10.0.0.5:3020"
|
|
with:
|
|
name: dist
|
|
path: dist/
|