Skip to content

Commit

Permalink
ci: add build ci (#161)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jocs authored Apr 20, 2024
1 parent 055d04d commit 0c8b29e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: 📦 Build

on:
push:
branches: [master]
pull_request:
branches: [master]

permissions:
contents: read

jobs:
build:
if: github.repository == 'marktext/muya'
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
uses: ./.github/actions/setup-node

- name: 📦 Build
run: pnpm run build

0 comments on commit 0c8b29e

Please sign in to comment.