Bump @babel/runtime from 7.12.5 to 7.28.3 #843
  
    
      This file contains hidden or 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: CloudFunctions Test CI | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| pull_request: | |
| branches: | |
| - dev | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 12.20.1 | |
| - name: Setting up Java | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: '9.0.4' | |
| # - uses: actions/cache@v2 | |
| # with: | |
| # path: '**/node_modules' | |
| # key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} | |
| - name: Install packages | |
| run: yarn install | |
| - name: Setup CI environment | |
| run: yarn ci:setup --token ${{ secrets.FIREBASE_TOKEN }} | |
| - name: Run tests | |
| run: yarn ci:test |