Skip to content

Refactoring Code. Adding Example Queries and Mutations #12

Refactoring Code. Adding Example Queries and Mutations

Refactoring Code. Adding Example Queries and Mutations #12

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main # change this to your default branch name
push:
branches:
- main # change this to your default branch name
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 20
- name: Install Dependencies
run: cd client && npm install && cd ../server && npm install
working-directory: ./hmns-app
- name: Run ESLint
run: npm run lint
working-directory: ./hmns-app/client/app