Skip to content

Merge branch 'master' into develop #169

Merge branch 'master' into develop

Merge branch 'master' into develop #169

Workflow file for this run

name: build, test and lint
on:
push :
branches : [ "**" ]
pull_request:
types: [ opened ]
jobs:
build-test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v3
- name: πŸ— Setup node
uses: actions/setup-node@v3
with:
node-version: lts/*
cache: yarn
cache-dependency-path: yarn.lock
- name: πŸ— Config files
run: |
echo "$FIREBASE_CONFIG_DEV" > ./src/config/firebaseAuthConfig.js
env:
FIREBASE_CONFIG_DEV: ${{ secrets.FIREBASE_CONFIG_DEV }}
- name: πŸ“¦ Install dependencies
run: yarn install --pure-lockfile --non-interactive
- name: πŸ“¦ Run test
run: yarn test
- name: πŸ“¦ Run lint
run: yarn lint