160 update openai version #185
This file contains 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: Firebase Preview Channel | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
if: github.repository_owner == 'SpiritSeal' && github.event.pull_request.user.login != 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install ./ Dependencies | |
run: npm ci --prefer-offline --no-audit | |
- name: Install ./functions Dependencies | |
run: cd ./functions && npm ci --prefer-offline --no-audit && cd .. | |
- name: TSC | |
run: npm run tsc | |
- name: Build React | |
run: npm run build | |
- name: Deploy to Preview Channel | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: ${{ secrets.GITHUB_TOKEN }} | |
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_MIND_MAP_TESTING }} | |
projectId: mind-map-testing | |
target: default | |
env: | |
FIREBASE_CLI_PREVIEWS: hostingchannels |