Bump firebase-tools from 11.25.1 to 13.11.4 #2191
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: Node.js CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "18" | |
cache: "yarn" | |
- name: Cache node_modules | |
uses: actions/cache@v4 | |
id: cached-node_modules | |
with: | |
path: | | |
node_modules | |
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}-${{ hashFiles('.github/workflows/node.yml') }} | |
- name: Install | |
if: steps.cached-node_modules.outputs.cache-hit != 'true' | |
env: | |
# This is because package.json contains `minimalcss` which depends | |
# on `puppeteer`. | |
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 1 | |
run: yarn --frozen-lockfile | |
- name: Lint | |
run: yarn lint | |
- name: Prettier | |
run: yarn pretty | |
- name: Cache node_modules (functions) | |
uses: actions/cache@v4 | |
id: cached-node_modules-functions | |
with: | |
path: | | |
functions/node_modules | |
key: ${{ runner.os }}-${{ hashFiles('functions/yarn.lock') }}-${{ hashFiles('.github/workflows/e2e.yml') }} | |
- name: Install (functions) | |
if: steps.cached-node_modules-functions.outputs.cache-hit != 'true' | |
working-directory: functions | |
run: yarn --frozen-lockfile | |
- name: Lint (functions) | |
working-directory: functions | |
run: yarn lint | |
- name: Prettier (functions) | |
working-directory: functions | |
run: yarn pretty | |
- name: Run dev server | |
env: | |
# These are NOT secrets. It's public stuff. | |
PREACT_APP_FIREBASE_APIKEY: AIzaSyBlMzrsBR_KWXDdgntBgnCThjRqr-0I8js | |
PREACT_APP_FIREBASE_AUTHDOMAIN: groce-dev.firebaseapp.com | |
PREACT_APP_FIREBASE_DATABASEURL: https://groce-dev.firebaseio.com | |
PREACT_APP_FIREBASE_PROJECTID: groce-dev | |
PREACT_APP_FIREBASE_STORAGEBUCKET: groce-dev.appspot.com | |
PREACT_APP_FIREBASE_MESSAGINGSENDERID: 170241343352 | |
PREACT_APP_FIREBASE_APPID: 1:170241343352:web:5282dd555337af2a62d28d | |
run: yarn dev > /tmp/stdout.log 2> /tmp/stderr.log & | |
- name: Wait for dev server | |
run: | | |
# Just a slight delay to wait until the dev server is ready. | |
sleep 5 | |
curl --retry-connrefused --retry 5 http://localhost:8080 > /dev/null | |
- name: Debug server's stdout and stderr if tests failed | |
if: failure() | |
run: | | |
echo "STDOUT..................................................." | |
cat /tmp/stdout.log | |
echo "" | |
echo "STDERR..................................................." | |
cat /tmp/stderr.log |