Move to Monorepo #198
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: CI | |
on: [pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- run: yarn install | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- uses: actions/cache@v2 | |
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-v2-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn-v2- | |
- run: yarn build | |
- name: Upload dist directory | |
uses: actions/upload-artifact@v1 | |
with: | |
name: dist | |
path: dist | |
smoke_tests: | |
name: Unit Tests | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: yarn | |
- run: yarn smoketest | |
core_tests: | |
name: Unit Tests | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: yarn | |
- run: yarn coretest | |
v4_tests: | |
name: Unit Tests | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: yarn | |
- run: yarn test_4 | |
io_tests: | |
name: Unit Tests | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: yarn | |
- run: yarn test_io | |
cli_tests: | |
name: CLI Tests | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: yarn | |
- run: script/run.sh | |
e2e_tests: | |
name: E2E Tests | |
needs: [build] | |
runs-on: ubuntu-latest | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
FIRESTORE_EMULATOR_HOST: localhost:8080 | |
DISPLAY: ":99" | |
steps: | |
- uses: actions/checkout@v2 | |
- run: sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 & | |
- run: yarn | |
- name: Download dist | |
uses: actions/download-artifact@v1 | |
with: | |
name: dist | |
- run: export yarn ci | |
- uses: actions/upload-artifact@v2 | |
if: ${{ always() }} | |
with: | |
name: firebase-debug | |
path: firebase-debug.log |