Skip to content

Commit

Permalink
Merge pull request #818 from ZeLonewolf/zlw-mac-arm64-ci
Browse files Browse the repository at this point in the history
Add CI for MacOS
  • Loading branch information
ZeLonewolf authored Mar 11, 2023
2 parents 5a0cb66 + 24b0b51 commit 34f541a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/test-build-mac.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test Build (MacOS)

on:
pull_request:
branches: [main]

jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install and Build 🔧
run: |
npm ci --include=dev
npm run build
npm run style
- name: Test 🧪
run: |
npm test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test Build
name: Test Build (Ubuntu)

on:
pull_request:
Expand Down

0 comments on commit 34f541a

Please sign in to comment.