Skip to content

feat: search mod input get a reset button when there is text #85

feat: search mod input get a reset button when there is text

feat: search mod input get a reset button when there is text #85

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Lint code
run: |
(cd mclib && bunx eslint .)
(cd web && bunx eslint .)
- name: build CLI
run: cd cli && bun run build
- name: Build website
run: cd web && bun run build
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v3
with:
path: 'web/build/'
upload_pages:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
permissions:
id-token: write
pages: write
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4