feat: full test coverage on macos & ios, v8 14 #82
This file contains hidden or 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
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: 'recursive' | |
| - name: Use Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24.x' | |
| - name: Install Dependencies | |
| run: npm install | |
| - name: Download V8 | |
| run: ./download_v8.sh | |
| - name: Install libffi build tools | |
| run: brew install autoconf automake libtool texinfo | |
| - name: Build libffi | |
| run: npm run build-libffi | |
| - name: Build metadata generator | |
| run: npm run build-metagen | |
| - name: Build NativeScript | |
| run: npm run build | |
| - name: Build CLI | |
| run: npm run build:macos-cli | |
| - name: Run Tests on macOS | |
| run: npm test:macos | |
| - name: Run Tests on iOS | |
| run: npm test:ios |