Skip to content

Merge branch 'development' of github.com:olasunkanmi-SE/restaurant in… #765

Merge branch 'development' of github.com:olasunkanmi-SE/restaurant in…

Merge branch 'development' of github.com:olasunkanmi-SE/restaurant in… #765

Workflow file for this run

name: CI for restaurant
on:
pull_request:
branches: [release, main, development]
push:
branches: [release, main, development]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: "16"
- name: ci for backend
working-directory: ./backend
run: |
npm i
npm run build
npm run test:unit
npm run test:cov
- name: lint backend
working-directory: ./backend
run: |
npm run format
- name: ci for frontend
working-directory: ./frontend
run: |
npm i
npm run build
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}