Skip to content

chore: update jest.config.json #4

chore: update jest.config.json

chore: update jest.config.json #4

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
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: |
touch .env

Check failure on line 22 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

You have an error in your yaml syntax on line 22
echo "${{ secrets.ENV_FILE }}" > .env
- run: npm run lint
- run: npm run test:unit
deploy_server:
runs-on: ubuntu-latest
needs: test_server
env:
GOOGLE_APPLICATION_CREDENTIALS: google-application-credentials.json
steps:
- uses: actions/checkout@v3
with:
node-version: 18
cache: "npm"
- run: npm ci
- run: echo "${{ secrets.ENV_FILE }}" > .env
- run: npm run build:server
- run: echo ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} > google-application-credentials.json"
- run: firebase deploy --only functions:auth,functions:data