Skip to content

Commit

Permalink
Add compile check workflow to verify compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
moyogii committed Jan 22, 2025
1 parent 6b707fc commit 6342da0
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Compile Check

on: [push, pull_request]

env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}

jobs:
compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: |
npm install
- name: Build Sparrow
run: |
npm run build

0 comments on commit 6342da0

Please sign in to comment.