Skip to content
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

Try newer version of Ubuntu (SQUASH WHEN MERGING) #2070

Closed
wants to merge 12 commits into from
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
env:
GIT_REPO: ${{ secrets.GIT_REPO }}
APP_ENV: development
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
env:
GIT_REPO: ${{ secrets.GIT_REPO }}
APP_ENV: production
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
env:
GIT_REPO: ${{ secrets.GIT_REPO }}
APP_ENV: staging
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-uat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
env:
GIT_REPO: ${{ secrets.GIT_REPO }}
APP_ENV: uat
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [pull_request]
jobs:
# Build for the Acquia Cloud development environment
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
Expand All @@ -13,5 +13,5 @@ jobs:
npm i
bundle install
- name: Run tests
run: |
run: |
make test
5 changes: 5 additions & 0 deletions features/support/mink.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ const driver = new mink.Mink({
width: 1366,
height: 768,
},
headless: true,
devtools: false,
puppeteer: {
args: ['--no-sandbox', '--disable-setuid-sandbox'],
},
selectors: {
'homepage search button': '.usa-search-submit-text',
'the homepage search box': '#search-field-big',
Expand Down
13 changes: 6 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"axios": "0.x",
"babel-polyfill": "6.x",
"bluebird": "^3.7.2",
"cucumber-mink": "2.x",
"cucumber-mink": "github:brockfanning/cucumber-mink#patch-1",
"d8-jsonapi-querystring": "0.0.8",
"excellentexport": "3.x",
"flux": "4.x",
Expand Down