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

Added the graphql definition and displaying a valid international standings #39

Merged
merged 37 commits into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
eeb078e
Cleaned and updated dependencies
romdj Oct 24, 2022
f2197fa
environment rebuild
romdj Oct 24, 2022
9197b8a
added dev to branch build for gh actions
romdj Oct 24, 2022
073329f
moved build file
romdj Oct 24, 2022
79b9950
refreshed package scrits
romdj Oct 24, 2022
c2d8c52
Finalizing clean-up
romdj Oct 24, 2022
ac3238b
continuing cleanup
romdj Oct 24, 2022
b632ae8
continuing cleanup package declarations
romdj Oct 24, 2022
e559479
Archived teamInfo unit test
romdj Oct 24, 2022
bdcce3a
Corrected deps
romdj Oct 24, 2022
bfa218a
updated config
romdj Oct 24, 2022
0b1efdf
marginal changes/updates
romdj Oct 26, 2022
2adf0e8
major refactoring
romdj Oct 27, 2022
832c59c
more structuring & refactoring
romdj Oct 27, 2022
2031eec
Reconfigured tsconfig to include tests and import test data
romdj Oct 27, 2022
fe9a24c
removing back-end from repository
romdj Nov 26, 2023
b37063b
Added graphql dependencies
romdj Nov 26, 2023
b03bc9a
binding to fnm runtime
romdj Nov 26, 2023
405a70f
added nhle openapi definition
romdj Nov 26, 2023
e50a83d
added first response - test data
romdj Nov 26, 2023
1e5ae0c
committing first sandbox code
romdj Nov 26, 2023
14c6c1b
corrected api file format
romdj Nov 26, 2023
90a2fe5
added sandbox scripts
romdj Nov 26, 2023
50fb1ac
added some scripts to get started
romdj Nov 27, 2023
44a8b6b
clean previous code and test - create svelte app -
romdj Dec 2, 2023
66cd9f2
updated svelte project, need to redo all
romdj Oct 6, 2024
f586e85
switched to more boilerplate code
romdj Oct 6, 2024
cfea458
Added svelte core structure - wip
romdj Oct 6, 2024
4b94307
farthest ever gotten: added graphql endpoint that resolves dynamicall…
romdj Oct 19, 2024
011bd58
test: Added unit test for the graphql server
romdj Oct 19, 2024
5885167
cicd: minor build edit
romdj Oct 19, 2024
c84bfeb
fix: cleaning tree
romdj Oct 19, 2024
078e313
fix: removing src/ folder, cleaning dev tree
romdj Oct 19, 2024
083ceca
chore: added nvm versions to sub-repos
romdj Oct 19, 2024
c19eb7a
cicd: adapted build.yaml file structure to conform to the repository's
romdj Oct 19, 2024
f09b37e
cicd: build.yaml script cleanup
romdj Oct 19, 2024
fe6bb82
cicd: commented npm test definition for the front-end project
romdj Oct 19, 2024
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
24 changes: 18 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,24 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Setup Node 16.x

# Setup Node.js for both projects
- name: Setup Node 22.x
uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 22.x
cache: npm
- run: npm ci
- run: npm run build
# - run: npm run format-check
- run: npm test

# Build and test the GraphQL server
- name: Install and Build GraphQL Server
working-directory: ./graphql-server
run: |
npm i
npm test

# Build and test the Svelte front-end app
- name: Install and Build Svelte Frontend
working-directory: ./front-end/svelte/international-nhl-standings
# npm test
run: |
npm i
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16
v22
5 changes: 2 additions & 3 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
module.exports = {
trailingComma: "es5",
singleQuote: false,
singleQuote: true,
printWidth: 120,
tabWidth: 2,
useTabs: false,
semi: true,
quoteProps: "as-needed"
quoteProps: "as-needed",
};
157 changes: 0 additions & 157 deletions .test/unit/data/dummy-game.json

This file was deleted.

175 changes: 0 additions & 175 deletions .test/unit/data/dummy-ot-game.json

This file was deleted.

Loading
Loading