Skip to content

ci: update ci.yaml

ci: update ci.yaml #12

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
jobs:
test_server:
runs-on: ubuntu-latest
env:
NODE_ENV: development
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: echo "${{ secrets.ENV_FILE }}" > .env
- run: npm run lint
- run: npm run test:unit
- uses: codecov/codecov-action@v4
with:
file: ./coverage/server/clover.xml
token: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/upload-artifact@master
with:
name: dist
path: dist
deploy_server:
runs-on: ubuntu-latest
needs: test_server
env:
GCP_SA_KEY: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
steps:
- uses: actions/download-artifact@master
with:
name: dist
path: dist
- uses: w9jds/firebase-action@master
with:
args: deploy --only functions:auth,functions:data --project {{ secrets.FIREBASE_PROJECT_ID }}