Skip to content

Bump semver from 5.7.1 to 5.7.2 #277

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #277

Workflow file for this run

name: YSM Backend CI pipeline
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test-and-build:
name: 'Test and build'
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: ./
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: '14'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Activate caching for yarn
uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ysm-backend-${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
ysm-backend-${{ runner.os }}-yarn--
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run linting
run: yarn lint
- name: Run unit tests
run: yarn test:cov
- name: Run e2e tests
env:
FIREBASE_SERVICE_ACCOUNT: ${{ secrets.FIREBASE_SERVICE_ACCOUNT }}
FIREBASE_WEB_API_KEY: ${{ secrets.FIREBASE_WEB_API_KEY }}
run: yarn test:e2e
- name: Build app
run: yarn build