Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deployment #164

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5db04d3
quick fix
moppywhip May 4, 2023
e9b2d45
Merge branch 'main' of https://github.com/cis350/penn-housing-review
moppywhip May 4, 2023
433157d
moved files around
moppywhip May 5, 2023
82c3e4a
abc
moppywhip May 5, 2023
f822863
changed package.json
moppywhip May 5, 2023
21a4f00
Update package.json
moppywhip May 5, 2023
002f150
updated package.json for airbnb dependencies
moppywhip May 5, 2023
deb5f0e
updated package-lock
moppywhip May 5, 2023
623e643
a
moppywhip May 5, 2023
087b10e
fixed package-lock
moppywhip May 5, 2023
a18d28f
Update package.json
moppywhip May 5, 2023
390c06b
Update package.json
moppywhip May 5, 2023
2a0b438
disabled eslint
moppywhip May 5, 2023
436fc0a
temp
moppywhip May 5, 2023
225610e
Update .eslintrc.json
moppywhip May 5, 2023
3c6231c
Update package.json
moppywhip May 5, 2023
6aed038
p
moppywhip May 5, 2023
d213d18
Update package.json
moppywhip May 5, 2023
6e579b7
Update .eslintrc.json
moppywhip May 5, 2023
9ea8000
changes
kenzgf May 6, 2023
f5dc14e
eslint stuff
moppywhip May 6, 2023
8ca6f12
Merge branch 'deployment' of https://github.com/cis350/penn-housing-r…
moppywhip May 6, 2023
4c972e3
Create cis3500flow.yml
moppywhip May 6, 2023
f13c6c0
Update cis3500flow.yml
moppywhip May 6, 2023
613a4b1
fixed a dboperations export error
moppywhip May 6, 2023
05b8308
removed extra process in actions flow
moppywhip May 6, 2023
c01016d
fixed lint stuff
moppywhip May 6, 2023
4c717a7
update tests
lilianli17 May 7, 2023
f90d5d6
fixing utils.js
moppywhip May 7, 2023
10031fc
name change
kenzgf May 7, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
15 changes: 15 additions & 0 deletions Backend/.eslintrc.js → .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,18 @@ module.exports = {
"rules": {
}
}
module.exports = {
env: {
browser: true,
commonjs: true,
es2021: true,
},
extends: 'airbnb-base',
overrides: [
],
parserOptions: {
ecmaVersion: 'latest',
},
rules: {
},
};
34 changes: 34 additions & 0 deletions .github/workflows/cis3500flow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "deployment" ]
pull_request:
branches: [ "deployment" ]


# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
lint-test-build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: use Node.js 18
uses: actions/setup-node@v3
with:
node-veresion: 16
- run: npm install
- run: npm test
- run: npm run build --if-present
- run: npm run lint-backend
#- run: npm run lint

7 changes: 0 additions & 7 deletions Backend/index.js

This file was deleted.

Loading