Skip to content

chore(deps): bump firebase from 10.7.1 to 10.14.1 in /apps #434

chore(deps): bump firebase from 10.7.1 to 10.14.1 in /apps

chore(deps): bump firebase from 10.7.1 to 10.14.1 in /apps #434

Workflow file for this run

name: Global build & lint & test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 25
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v1
with:
path: apps/node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-modules-
- run: cd apps && npm install --legacy-peer-deps
- run: cd apps && npm run lint:all
- run: cd apps && npm run test:all
env:
CI: true