Skip to content

🐛 Use single line strings for playlist descriptions #28

🐛 Use single line strings for playlist descriptions

🐛 Use single line strings for playlist descriptions #28

Workflow file for this run

name: Build Functions
on:
pull_request:
branches: main
paths:
- 'functions/**'
- 'firebase.*'
- '.github/workflows/functions-build.yml'
jobs:
build-functions:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use specified Node version
uses: actions/setup-node@v3
with:
node-version-file: 'functions/.nvmrc'
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: ^8.6.9
- name: Install dependencies
run: pnpm --C ./functions/ install
- name: Build
run: pnpm --C ./functions/ build