Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

[pod-install] show alternative message in managed projects #2545

[pod-install] show alternative message in managed projects

[pod-install] show alternative message in managed projects #2545

Workflow file for this run

name: Test Packages Windows
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
node: ['14', '16']
name: Build with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install --frozen-lockfile --network-timeout 120000
- run: yarn lerna run prepare --stream
- run: yarn lint --max-warnings=0
- uses: actions/cache@v2
with:
path: '*'
key: v2-${{ github.sha }}-${{ matrix.node }}
test:
runs-on: ubuntu-latest
needs: build
strategy:
fail-fast: false
matrix:
node: ['14', '16']
package:
[
create-expo-app,
dev-tools,
babel-preset-cli,
expo-cli,
expo-codemod,
image-utils,
json-file,
pkcs12,
plist,
pwa,
schemer,
uri-scheme,
webpack-config,
xdl,
]
name: Test ${{ matrix.package }} on Node ${{ matrix.node }}
steps:
- uses: actions/cache@v2
with:
path: '*'
key: v2-${{ github.sha }}-${{ matrix.node }}
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Test ${{ matrix.package }}
run: cd packages/${{ matrix.package }} && yarn test
# run: cd packages/${{ matrix.package }} && yarn test --coverage
env:
CI: true
EXPO_DEBUG: true