Skip to content

refactoring documents and exampels #32

refactoring documents and exampels

refactoring documents and exampels #32

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- 'master'
jobs:
build_and_test:
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node 18.x
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build:ci
- name: Archive build
if: success()
uses: actions/upload-artifact@v4
with:
name: dist
path: dist