Skip to content

馃懛 Archive artifacts in CI build #1

馃懛 Archive artifacts in CI build

馃懛 Archive artifacts in CI build #1

Workflow file for this run

name: CI Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: Install
run: npm ci
- name: Run release build targets
run: npm run release
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: dist
path: dist