Skip to content

Bump micromatch from 4.0.5 to 4.0.8 (#322) #314

Bump micromatch from 4.0.5 to 4.0.8 (#322)

Bump micromatch from 4.0.5 to 4.0.8 (#322) #314

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
submodules: recursive
- name: Use Node.js 💻
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies (apt)
run: |
sudo apt-get update && \
sudo apt-get install -y --no-install-recommends libxi-dev libgl1-mesa-dev
- name: Install Dependencies 📦
run: yarn install --frozen-lockfile
- name: Build Modules 🔧
run: yarn build --tsc --lint
- name: include java json
run: cp -r src/java build
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build # The folder the action should deploy.