Skip to content

Handle backend errors #12

Handle backend errors

Handle backend errors #12

Workflow file for this run

name: Build Functions
on:
pull_request:
branches: main
paths:
- 'functions/**'
- 'firebase.*'
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: echo ${{ github.event_name }}
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn --cwd ./functions/
- name: Build
run: yarn --cwd ./functions/ build
- name: Archive compiled files
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
uses: actions/upload-artifact@v3
with:
name: functions-build
path: functions/lib