Skip to content

Commit

Permalink
fix: rollup not working on arm (#4018)
Browse files Browse the repository at this point in the history
Co-authored-by: Dominic Griesel <[email protected]>
  • Loading branch information
robertsLando and AlCalzone authored Nov 19, 2024
1 parent 1f8748c commit 7048d05
Show file tree
Hide file tree
Showing 3 changed files with 2,792 additions and 3,402 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test_install_arm64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Test install arm64

on:
push:
branches:
- master
pull_request:

jobs:
test-install:
name: Test install and build
runs-on: macos-14
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"

- name: Check arch is arm64
run: |
if [[ $(uname -m) != "arm64" ]]; then
echo "This job should run on arm64 architecture"
exit 1
fi
- name: Install and pre-build
run: |
npm ci
npm run build
Loading

0 comments on commit 7048d05

Please sign in to comment.