Add upcoming movies and tv shows #84
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: CI | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
paths: | |
- "src/**" | |
- "package.json" | |
jobs: | |
firebase-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@master | |
with: | |
node-version: "19.x" | |
- name: Install dependencies | |
run: npm install | |
- name: Config env variables | |
run: npm run config | |
env: | |
API_KEY: ${{ secrets.API_KEY }} | |
PROXY_SERVER: ${{ secrets.PROXY_SERVER }} | |
- name: Build prod | |
run: npm run build:prod | |
- uses: w9jds/firebase-action@master | |
with: | |
args: deploy --only hosting | |
env: | |
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} |