Skip to content

Local Updates

Local Updates #63

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@v3
- name: Install packages
run: |
cd Code/backend
npm install
- name: Code Formatter
run: |
cd Code/backend
npm run format