Fix cyclic import #1102
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: Dev | |
on: push | |
jobs: | |
test: | |
name: 'Unit Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: corepack enable | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn install | |
- name: Test Without Storage | |
run: yarn test:withoutStorage | |
storage-test: | |
name: 'Storage Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: corepack enable | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn install | |
- name: Test Storage | |
run: yarn firebase emulators:exec --only firestore --project test 'yarn test:storage' |