Skip to content

Update dependency shiki to ^1.22.0 #371

Update dependency shiki to ^1.22.0

Update dependency shiki to ^1.22.0 #371

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: json, gd, random
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: 'package.json'
- name: Install dependencies
run: make prod-setup
- name: QA
run: make qa
- name: Build site
run: make prod-build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs
clean: true