Skip to content

Downgrade firebase-functions #136

Downgrade firebase-functions

Downgrade firebase-functions #136

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