Skip to content

add documentation for Google Drive Sync #148

add documentation for Google Drive Sync

add documentation for Google Drive Sync #148

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node 14.16.1
uses: actions/setup-node@v1
with:
node-version: 14.16.1
- name: Use cached node_modules
uses: actions/cache@v1
with:
path: node_modules
key: nodeModules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
nodeModules-
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build