mirror of
https://github.com/BlueMap-Minecraft/BlueMapVue.git
synced 2024-11-23 01:55:10 +01:00
27 lines
518 B
YAML
27 lines
518 B
YAML
name: Node.js CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [14.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
- run: npm ci
|
|
- run: npm run build
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: distribution
|
|
path: dist/* |