-
-
Notifications
You must be signed in to change notification settings - Fork 503
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge branch '4513_incontinence_supplies' of github.com:jadek…
…stewart3/human-essentials into 4513_incontinence_supplies" This reverts commit 42fb8ef, reversing changes made to 8d09039.
- Loading branch information
1 parent
42fb8ef
commit 4c38cc2
Showing
985 changed files
with
8,957 additions
and
18,525 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,18 @@ | ||
name: Generate PlantUML | ||
on: push | ||
jobs: | ||
generate_plantuml: | ||
runs-on: ubuntu-latest | ||
name: plantuml | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
- name: plantuml | ||
id: plantuml | ||
uses: grassedge/[email protected] | ||
with: | ||
message: "Render PlantUML files" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,90 @@ | ||
name: rspec-events | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- "doc/**" | ||
- "*.md" | ||
- "bin/*" | ||
|
||
jobs: | ||
rspec-events: | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
db: | ||
image: postgres:12.3 | ||
env: | ||
POSTGRES_PASSWORD: password | ||
ports: | ||
- 5432:5432 | ||
options: >- | ||
--health-cmd pg_isready | ||
--health-interval 10s | ||
--health-timeout 5s | ||
--health-retries 5 | ||
# https://help.github.com/en/articles/workflow-syntax-for-github-actions#jobsjob_idstrategymatrix | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# Set N number of parallel jobs you want to run tests on. | ||
# Use higher number if you have slow tests to split them on more parallel jobs. | ||
# Remember to update ci_node_index below to 0..N-1 | ||
ci_node_total: [2] | ||
# set N-1 indexes for parallel jobs | ||
# When you run 2 parallel jobs then first job will have index 0, the second job will have index 1 etc | ||
ci_node_index: [0, 1] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
|
||
- name: Install PostgreSQL client | ||
run: | | ||
sudo apt-get -yqq install libpq-dev | ||
- name: Build App | ||
env: | ||
POSTGRES_HOST: localhost | ||
DATABASE_HOST: localhost | ||
PG_USERNAME: postgres | ||
PG_PASSWORD: password | ||
POSTGRES_HOST_AUTH_METHOD: trust | ||
POSTGRES_PORT: 5432 | ||
RAILS_ENV: test | ||
run: | | ||
bundle exec rake db:create | ||
bundle exec rake db:schema:load | ||
- name: Run rspec with events | ||
env: | ||
POSTGRES_HOST: localhost | ||
DATABASE_HOST: localhost | ||
PG_USERNAME: postgres | ||
PG_PASSWORD: password | ||
POSTGRES_HOST_AUTH_METHOD: trust | ||
POSTGRES_PORT: 5432 | ||
PGHOST: localhost | ||
PGUSER: postgres | ||
RAILS_ENV: test | ||
KNAPSACK_PRO_TEST_SUITE_TOKEN_RSPEC: ${{ secrets.KNAPSACK_PRO_TEST_SUITE_TOKEN_RSPEC }} | ||
KNAPSACK_PRO_CI_NODE_TOTAL: ${{ matrix.ci_node_total }} | ||
KNAPSACK_PRO_CI_NODE_INDEX: ${{ matrix.ci_node_index }} | ||
KNAPSACK_PRO_RSPEC_SPLIT_BY_TEST_EXAMPLES: true | ||
KNAPSACK_PRO_LOG_LEVEL: info | ||
KNAPSACK_PRO_TEST_FILE_EXCLUDE_PATTERN: "{spec/system/**{,/*/**}/*_spec.rb,spec/requests/**{,/*/**}/*_spec.rb}" | ||
EVENTS_READ: true | ||
run: | | ||
RUBYOPT='-W:no-deprecated -W:no-experimental' bin/knapsack_pro_rspec | ||
- name: Upload artifacts | ||
if: ${{ failure() }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: failed-browser-tests | ||
path: tmp/screenshots |
Oops, something went wrong.