Skip to content

Update deprecated helpers #12

Update deprecated helpers

Update deprecated helpers #12

Workflow file for this run

name: Deploy hosting
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
env:
FIREBASE_TOKEN: ${{secrets.FIREBASE_TOKEN}}
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- uses: actions/cache@v3
id: cache-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache-modules.outputs.cache-hit != 'true'
run: |
npm ci
- name: Deploy
run: |
npm run deploy