This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
refactor(json-file): move to expo/expo
#6096
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: Test Packages | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['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 --check-files | |
- 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: ['16'] | |
package: | |
[ | |
dev-tools, | |
babel-preset-cli, | |
expo-cli, | |
expo-doctor, | |
expo-codemod, | |
image-utils, | |
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 | |
# - name: Get Test Flag Name | |
# id: cov-flag-name | |
# run: echo "::set-output name=flag::$(echo ${{ matrix.package }} | perl -pe 's/[^a-z]+([a-z])/\U\1/gi;s/^([A-Z])/\l\1/')" | |
# - uses: codecov/codecov-action@v2 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
# file: ./packages/${{ matrix.package }}/coverage/clover.xml # optional | |
# flags: ${{ steps.cov-flag-name.outputs.flag }} # optional | |
# fail_ci_if_error: false # optional (default = false) | |
# puppeteer: | |
# runs-on: ubuntu-latest | |
# needs: build | |
# strategy: | |
# fail-fast: false | |
# name: Expo Webpack | |
# steps: | |
# - uses: actions/cache@v2 | |
# with: | |
# path: '*' | |
# key: v2-${{ github.sha }}-${{ matrix.node }} | |
# - name: Install puppeteer | |
# working-directory: packages/webpack-config | |
# run: yarn add -D [email protected] | |
# - name: Install test project dependencies | |
# working-directory: packages/webpack-config/e2e/basic | |
# run: yarn | |
# # Test starting an Expo web project | |
# - name: Test starting Webpack | |
# working-directory: packages/webpack-config | |
# run: yarn test:e2e:start | |
# env: | |
# CI: true | |
# # Test building an Expo web project | |
# - name: Test building Webpack | |
# working-directory: packages/webpack-config | |
# run: yarn test:e2e:build | |
# env: | |
# CI: true |