Bump firebase-tools from 13.15.2 to 13.16.0 #111
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install | |
run: npm ci | |
- name: Check types | |
run: npm run type-check | |
- name: Test | |
run: npm test | |
- name: Build | |
run: npm run build | |
- name: Build Functions | |
working-directory: functions | |
run: | | |
npm run build |