Skip to content

chore: update issue workflow to use AMP project #634

chore: update issue workflow to use AMP project

chore: update issue workflow to use AMP project #634

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x]
os: [macOS-latest, ubuntu-18.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Git Repository
uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: yarn install --frozen-lockfile --network-timeout 300000 --ignore-scripts
- name: Bootstrap (Build Files + Link Dependents)
run: yarn lerna bootstrap
- name: Lint (ESLint + Prettier)
run: yarn lint-since
- name: Run Unit Tests
run: yarn test-since