Skip to content

fix: Solve metro-config detection issue #903

fix: Solve metro-config detection issue

fix: Solve metro-config detection issue #903

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn lint
build:
name: Build
runs-on: ${{ matrix.os-version }}
needs: lint
strategy:
matrix:
node-version: [14.x]
os-version: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn build
env:
CI: true
test:
name: Test
runs-on: ${{ matrix.os-version }}
needs: build
strategy:
matrix:
node-version: [14.x]
os-version: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn test
env:
CI: true