Skip to content

Commit

Permalink
Revert "Merge branch '4513_incontinence_supplies' of github.com:jadek…
Browse files Browse the repository at this point in the history
…stewart3/human-essentials into 4513_incontinence_supplies"

This reverts commit 42fb8ef, reversing
changes made to 8d09039.
  • Loading branch information
jadekstewart3 committed Nov 27, 2024
1 parent 42fb8ef commit 4c38cc2
Show file tree
Hide file tree
Showing 985 changed files with 8,957 additions and 18,525 deletions.
14 changes: 0 additions & 14 deletions .devcontainer/.env.codespaces

This file was deleted.

9 changes: 0 additions & 9 deletions .devcontainer/Dockerfile

This file was deleted.

42 changes: 0 additions & 42 deletions .devcontainer/devcontainer.json

This file was deleted.

35 changes: 0 additions & 35 deletions .devcontainer/docker-compose.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .devcontainer/launch.json.codespaces

This file was deleted.

19 changes: 0 additions & 19 deletions .devcontainer/post-create.sh

This file was deleted.

1 change: 0 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
- I have added tests that prove my fix is effective or that my feature works,
- New and existing unit tests pass locally with my changes ("bundle exec rake"),
- Title include "WIP" if work is in progress.
- I acknowledge that I will *not* force push my branch once reviews have started.
-->

Expand Down
5 changes: 1 addition & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ updates:
- package-ecosystem: bundler
directory: "/"
schedule:
interval: monthly
interval: daily
open-pull-requests-limit: 10
ignore:
- dependency-name: bootstrap
Expand All @@ -23,9 +23,6 @@ updates:
- dependency-name: geocoder
versions:
- 1.6.7
- dependency-name: strong_migrations
versions:
- 1.8.0
- dependency-name: devise_invitable
versions:
- 2.0.4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/brakeman.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: brakeman

on:
push:
paths-ignore:
- 'doc/**'
- '*.md'
- 'bin/*'
branches:
- main
pull_request:
branches:
- main
paths-ignore:
- 'doc/**'
- '*.md'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/factory-bot-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: factory bot lint

on:
push:
paths-ignore:
- 'doc/**'
- '*.md'
- 'bin/*'
branches:
- main
pull_request:
branches:
- main
paths-ignore:
- 'doc/**'
- '*.md'
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/plantuml.yml
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 }}
90 changes: 90 additions & 0 deletions .github/workflows/rspec-events.yml
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
Loading

0 comments on commit 4c38cc2

Please sign in to comment.