-
Notifications
You must be signed in to change notification settings - Fork 33
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
CI: Run e2e tests against two Grafana versions #1419
base: main
Are you sure you want to change the base?
Conversation
Hello! 👋 This repository uses Auto for releasing packages using PR labels. ✨ This PR can be merged. It will not be considered when calculating future versions of the npm packages and will not appear in the changelogs. |
45f43a7
to
2ab7203
Compare
|
b753919
to
055c2cb
Compare
5389546
to
522daa0
Compare
@@ -21,8 +21,6 @@ export default defineConfig<PluginOptions>({ | |||
forbidOnly: !!process.env.CI, | |||
/* Retry on CI only */ | |||
retries: process.env.CI ? 2 : 0, | |||
/* Opt out of parallel tests on CI. */ | |||
workers: process.env.CI ? 1 : undefined, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This speeds up the CI process a bit. Seems to work fine in GH workflows
What this PR does / why we need it:
This PR extends the CI workflow so that the e2e tests are not only run against the latest version of Grafana, but also against the lowest supported Grafana version. In addition to that, I'm also uploading the reports to GCS.
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer: