Skip to content

Commit

Permalink
Merge branch 'main' into retry-gitlab-409-errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jippi authored May 7, 2024
2 parents 8f3ff34 + 31a9b78 commit 98d6c79
Show file tree
Hide file tree
Showing 5 changed files with 5,552 additions and 2,058 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ jobs:
# start http-server for integration testing
npx http-server runatlantis.io/.vuepress/dist &
- name: Run Playwright E2E tests
run: |
pnpx playwright install --with-deps
pnpm run e2e
- name: wait until server listened
run: curl --retry-delay 1 --retry 30 --retry-all-error http://localhost:8080

Expand Down
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{
"license": "Apache-2.0",
"devDependencies": {
"@playwright/test": "^1.44.0",
"@vuepress/bundler-webpack": "2.0.0-rc.9",
"@vuepress/plugin-docsearch": "2.0.0-rc.26",
"@vuepress/plugin-docsearch": "2.0.0-rc.27",
"@vuepress/plugin-google-analytics": "2.0.0-rc.21",
"@vuepress/plugin-sitemap": "2.0.0-rc.26",
"@vuepress/theme-default": "2.0.0-rc.24",
"@vuepress/utils": "2.0.0-rc.9",
"sass-loader": "14.1.1",
"vuepress": "2.0.0-rc.9",
"vue": "3.4.21"
"vue": "3.4.21",
"vuepress": "2.0.0-rc.9"
},
"scripts": {
"website:dev": "vuepress dev runatlantis.io",
"website:build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build runatlantis.io"
"website:build": "NODE_OPTIONS=--openssl-legacy-provider vuepress build runatlantis.io",
"e2e": "playwright test"
}
}
3 changes: 3 additions & 0 deletions playwright.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
testDir: './runatlantis.io/e2e'
};
Loading

0 comments on commit 98d6c79

Please sign in to comment.