Skip to content

feat: update deployment pipeline #72

feat: update deployment pipeline

feat: update deployment pipeline #72

Workflow file for this run

name: Build and Deploy App
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v2
- name: Setup Node ⚙
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: 'npm'
- name: Install node_modules 📦
run: npm ci
# - name: Run unit tests 🧪
# run: npm run test:unit
- name: Build ⚒️
run: npm run build-only -- --base https://pkief.github.io/material-color-converter/
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.5
with:
branch: gh-pages
folder: dist