-
Notifications
You must be signed in to change notification settings - Fork 4
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 #468 from sanger/upgrade-ci-actions
chore: Update GitHub Actions setup-node to v4 in ci.yml
- Loading branch information
Showing
13 changed files
with
218 additions
and
27 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
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,15 @@ | ||
import { defineConfig } from 'cypress' | ||
|
||
export default defineConfig({ | ||
fixturesFolder: 'tests/e2e/fixtures', | ||
screenshotsFolder: 'tests/e2e/screenshots', | ||
videosFolder: 'tests/e2e/videos', | ||
e2e: { | ||
// eslint-disable-next-line no-unused-vars | ||
setupNodeEvents(on, config) {}, | ||
specPattern: 'tests/e2e/specs/**/*.cy.{js,jsx,ts,tsx}', | ||
supportFile: 'tests/e2e/support/index.js', | ||
baseUrl: 'http://localhost:5173/', | ||
experimentalRunAllSpecs: true, | ||
}, | ||
}) |
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
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,181 @@ | ||
/* Import Tailwind's base styles from ui-styling package. Optional if you don't want to use them.**/ | ||
@import '../../node_modules/@sanger/ui-styling/tailwind.css'; | ||
|
||
/* Define your custom styles */ | ||
.success-message { | ||
--tw-bg-opacity: 1; | ||
background-color: rgb(72 187 120 / var(--tw-bg-opacity)); | ||
--tw-text-opacity: 1; | ||
color: rgb(255 255 255 / var(--tw-text-opacity)); | ||
} | ||
.success-icon { | ||
--tw-text-opacity: 1; | ||
color: rgb(255 255 255 / var(--tw-text-opacity)); | ||
} | ||
.success-icon:hover { | ||
--tw-text-opacity: 1; | ||
color: rgb(34 84 61 / var(--tw-text-opacity)); | ||
} | ||
|
||
.failure-message { | ||
--tw-bg-opacity: 1; | ||
background-color: rgb(245 101 101 / var(--tw-bg-opacity)); | ||
--tw-text-opacity: 1; | ||
color: rgb(255 255 255 / var(--tw-text-opacity)); | ||
} | ||
.failure-icon { | ||
--tw-text-opacity: 1; | ||
color: rgb(255 255 255 / var(--tw-text-opacity)); | ||
} | ||
.failure-icon:hover { | ||
--tw-text-opacity: 1; | ||
color: rgb(116 42 42 / var(--tw-text-opacity)); | ||
} | ||
|
||
.warning-message { | ||
background-color: #fff3cd; | ||
color: #856404; | ||
} | ||
.warning-icon { | ||
color: #856404; | ||
} | ||
.warning-icon:hover { | ||
color: #856404; | ||
} | ||
|
||
#app { | ||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | ||
text-align: center; | ||
color: #2c3e50; | ||
} | ||
|
||
nav { | ||
margin-bottom: 5px; | ||
} | ||
|
||
#nav { | ||
margin-bottom: 5px; | ||
} | ||
|
||
#nav a { | ||
font-weight: bold; | ||
color: #2c3e50; | ||
} | ||
|
||
#nav a.router-link-exact-active { | ||
color: #42b983; | ||
} | ||
|
||
#nav a.router-link-active { | ||
color: #42b983; | ||
} | ||
|
||
a:hover { | ||
text-decoration: none; | ||
color: black; | ||
} | ||
|
||
.file { | ||
visibility: hidden; | ||
position: absolute; | ||
} | ||
|
||
.text-center { | ||
text-align: center; | ||
} | ||
|
||
label { | ||
font-size: 20px; | ||
} | ||
|
||
nav { | ||
height: 30px; | ||
width: 100%; | ||
margin-bottom: 10px; | ||
} | ||
|
||
nav a { | ||
color: white; | ||
} | ||
|
||
nav a:hover, | ||
nav a:visited { | ||
color: white; | ||
} | ||
|
||
th { | ||
background-color: #ddd1c3; | ||
} | ||
|
||
.alert { | ||
margin-left: 20px; | ||
margin-right: 20px; | ||
} | ||
|
||
.navbar-dark .navbar-nav .nav-link { | ||
color: white !important; | ||
} | ||
|
||
.wrapper { | ||
overflow: auto; | ||
display: -webkit-box; | ||
display: -ms-flexbox; | ||
display: flex; | ||
-ms-flex-wrap: wrap; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
} | ||
|
||
.table td { | ||
border: 1px solid #dee2e6; | ||
} | ||
|
||
.table td, | ||
.table th { | ||
min-height: 50px; | ||
font-size: 12px; | ||
} | ||
|
||
.control { | ||
color: white; | ||
background-color: #006600; | ||
} | ||
|
||
.blank { | ||
color: white; | ||
} | ||
|
||
.standard { | ||
color: white; | ||
background-color: #000066; | ||
} | ||
|
||
.empty { | ||
color: white; | ||
} | ||
|
||
.inactive { | ||
color: white; | ||
background-color: gray; | ||
} | ||
|
||
.inspect { | ||
color: white; | ||
background-color: #a5191e; | ||
} | ||
|
||
.warning { | ||
color: white; | ||
background-color: #65009c; | ||
} | ||
|
||
.tooltip-text { | ||
position: absolute; | ||
z-index: 2; | ||
width: 200px; | ||
color: white; | ||
font-size: 12px; | ||
background-color: black; | ||
border-radius: 10px; | ||
padding: 10px 15px 10px 15px; | ||
} |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.