Skip to content

feat: implement component config #110

feat: implement component config

feat: implement component config #110

Workflow file for this run

name: Build
on:
push:
branches:
- '*/*'
- '*'
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Use Node.js 16
uses: actions/setup-node@v4
with:
node-version: 16
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Save build
uses: actions/upload-artifact@v4
with:
name: build
path: ./build