Skip to content

Fix bug where logged-in users can't see org details (#103) #151

Fix bug where logged-in users can't see org details (#103)

Fix bug where logged-in users can't see org details (#103) #151

Workflow file for this run

name: Test
on: push
jobs:
test-web:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '20'
- name: Checkout
uses: actions/checkout@v4
- name: Test
working-directory: ./web
run: |
npm ci
npm run build
test-functions:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '20'
- name: Checkout
uses: actions/checkout@v4
- name: Test
working-directory: ./functions
run: |
npm ci
npm run lint
npm run build
test-firestore:
runs-on: ubuntu-latest
steps:
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '20'
- name: Checkout
uses: actions/checkout@v4
- name: Test
working-directory: ./firestore
env:
FIREBASE_CLI_EXPERIMENTS: webframeworks
run: |
npm ci
npm run test