-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
11,265 additions
and
30,332 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 |
---|---|---|
|
@@ -17,17 +17,14 @@ jobs: | |
with: | ||
node-version: "18" | ||
|
||
- name: Cache Node Modules | ||
uses: actions/cache@v3 | ||
- name: Setup pnpm | ||
uses: pnpm/[email protected] | ||
with: | ||
path: | | ||
src/frontend/node_modules | ||
keys: node-modules-${{ env.cache_id }} | ||
restore-keys: | | ||
node-modules- | ||
package_json_file: src/frontend/main/package.json | ||
version: 8.8.0 | ||
|
||
- name: Test Frontend | ||
working-directory: src/frontend/main | ||
run: | | ||
cd src/frontend | ||
npm ci --only-dev | ||
npm run test | ||
pnpm ci --only-dev | ||
pnpm run test |
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
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,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="icon" href="favicon.ico" /> | ||
<link rel="manifest" href="/manifest.json" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/openlayers/7.4.0/ol.min.css" | ||
integrity="sha512-InhY7dfdkf2+ZyIsz9AX9M1xDC3GjEy0zVnAIudX1fTUOEhBu13KooX9txjBoWkDAMI3fQ07VE/D0gMUvweerw==" | ||
crossorigin="anonymous" | ||
referrerpolicy="no-referrer" | ||
/> | ||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" /> | ||
<title>Field Mapping Tasking Manager</title> | ||
</head> | ||
|
||
<body> | ||
<div id="app"></div> | ||
<script type="module" src="/src/App.jsx"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.