Skip to content

[Snyk] Upgrade firebase from 10.12.2 to 10.12.4 #259

[Snyk] Upgrade firebase from 10.12.2 to 10.12.4

[Snyk] Upgrade firebase from 10.12.2 to 10.12.4 #259

Workflow file for this run

name: Web SDK tests
on:
pull_request:
paths:
- examples/web/**
defaults:
run:
working-directory: examples/web # The working directory path
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install deps
run: yarn install --frozen-lockfile
- name: Run tests
run: CI=true yarn test