Skip to content

Merged bookmarks

Merged bookmarks #7

Workflow file for this run

name: Check the source code
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
test:
name: Check the source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install packages
run: |
cd Code/backend
npm install
- name: Code Formatter
run: |
cd Code/backend
npm run format