-
-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: rollup not working on arm (#4018)
Co-authored-by: Dominic Griesel <[email protected]>
- Loading branch information
1 parent
1f8748c
commit 7048d05
Showing
3 changed files
with
2,792 additions
and
3,402 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.