Skip to content

Log only if the app isn't 3P as user won't likely have access to OS #930

Log only if the app isn't 3P as user won't likely have access to OS

Log only if the app isn't 3P as user won't likely have access to OS #930

Workflow file for this run

name: ci
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
- run: yarn install --ignore-scripts
- run: yarn run lint
test:
needs: [lint]
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
node-version: [12]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --ignore-scripts
- run: yarn run ci:test