Skip to content

docs(bartender): Update index.md #56

docs(bartender): Update index.md

docs(bartender): Update index.md #56

Workflow file for this run

name: ci
on:
push:
branches:
- docs/src
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@v3
- name: Setup node env πŸ—
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node_modules πŸ“¦
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies πŸ‘¨πŸ»β€πŸ’»
run: npm ci
- name: Build site πŸ› 
run: npm run build
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: docs/dist # The branch the action should deploy to.
folder: ./public # The folder the action should deploy.