Skip to content

chore(release): 0.4.6 #70

chore(release): 0.4.6

chore(release): 0.4.6 #70

Workflow file for this run

name: build
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: npm
- name: Install dependencies 📦
run: npm ci
- name: Lint 🧹
run: npm run lint
- name: Build 🔧
run: npm run build
- name: Test 🧪
run: npm run test:ci
- name: Coveralls 🎉
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Build Docs 📖
run: npm run docs
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs