Skip to content

Bump axios from 0.20.0 to 0.30.0 #842

Bump axios from 0.20.0 to 0.30.0

Bump axios from 0.20.0 to 0.30.0 #842

Workflow file for this run

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