-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #179 from conorheffron/ghnv
* Update AppNavbar.js * #178 Update pom.xml * #178 Update AppNavbar.js * #137 Update pom.xml * #171 Move static content file resolver stmt to DEBUG level & return null * #177 Update home-page.png * #180 Update ControlledCarousel.js * #178 Update AppNavbar.js remove unused imports * #177 Update README.md * #177 Create local-ui-proxy.png * #180 Update package.json * #180 Create package-lock.json * #180 Update pom.xml, bump release version from minor to patch * #144: Refactoring. Moved static content config to application yml Added to & updated app test suite * #184 Update pom.xml & README.md with Jacoco config/info * #167 Migrate strava iframe to src img with hyper link, CSS refactor (indentation) * #151 Update index.html meta tags * Bump io.swagger.core.v3:swagger-annotations from 2.2.26 to 2.2.27 (#181) * Bump io.swagger.core.v3:swagger-annotations from 2.2.26 to 2.2.27 Bumps io.swagger.core.v3:swagger-annotations from 2.2.26 to 2.2.27. --- updated-dependencies: - dependency-name: io.swagger.core.v3:swagger-annotations dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Update pom.xml --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Conor Heffron <conor.heffron@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information
Showing
28 changed files
with
21,293 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | ||
|
||
name: Node.js CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
cache-dependency-path: './frontend/package-lock.json' | ||
- run: npm ci | ||
working-directory: './frontend' | ||
- run: npm run build --if-present | ||
working-directory: './frontend' | ||
- run: npm test | ||
working-directory: './frontend' | ||
- run: npm install | ||
working-directory: './frontend' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.