fix(deps): fix dependencies post merge commit #40
Workflow file for this run
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
name: Check Xplat | |
on: | |
pull_request: | |
jobs: | |
bundle-xplat: | |
strategy: | |
matrix: | |
platform: [macos-14, windows-2022] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: '18' | |
cache: yarn | |
- name: Install npm dependencies | |
run: yarn --frozen-lockfile --ignore-platform | |
- name: Build dependencies | |
run: yarn build --to xplat-v9 | |
- name: Bundle for Android | |
run: yarn build:android | |
working-directory: apps/xplat-v9 | |
- name: Bundle for iOS | |
run: yarn build:ios | |
working-directory: apps/xplat-v9 | |
- name: Bundle for macOS | |
run: yarn build:macos | |
working-directory: apps/xplat-v9 | |
- name: Bundle for Windows | |
run: yarn build:windows | |
working-directory: apps/xplat-v9 |