Skip to content

Bump @angular/core from 9.1.0 to 10.2.5 #6

Bump @angular/core from 9.1.0 to 10.2.5

Bump @angular/core from 9.1.0 to 10.2.5 #6

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
firebase-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: '12.x'
- run: npm install
- run: npm run build:prod
- name: Deploy to Firebase
uses: w9jds/[email protected]
with:
args: deploy --only hosting --project inspiritvr
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}