Skip to content

Commit 26f4c1f

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/custom-links-in-dropdown
2 parents 8b923fd + a2e7577 commit 26f4c1f

File tree

466 files changed

+20058
-10653
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

466 files changed

+20058
-10653
lines changed

.allow_skipping_tests

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
blueprints/api/v1/session_blueprint.rb
22
channels/application_cable/channel.rb
33
channels/application_cable/connection.rb
4-
controllers/case_groups_controller.rb
54
controllers/concerns/court_date_params.rb
65
controllers/followup_reports_controller.rb
76
controllers/learning_hour_topics_controller.rb

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"version": "latest"
2626
},
2727
"ghcr.io/devcontainers/features/node:1": {
28-
"version": "20.16.0"
28+
"version": "22.11.0"
2929
}
3030
},
3131

.devcontainer/post-create.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ RUBY_VERSION="$(cat .ruby-version | tr -d '\n')"
33
# copy the file only if it doesn't already exist
44
cp -n .devcontainer/.env.codespaces .env
55

6-
# If the project's required ruby version changes from 3.2.2, this command
6+
# If the project's required ruby version changes from 3.3.6, this command
77
# will download and compile the correct version, but it will take a long time.
8-
if [ "$RUBY_VERSION" != "3.2.2" ]; then
8+
if [ "$RUBY_VERSION" != "3.3.6" ]; then
99
rvm install $RUBY_VERSION
1010
rvm use $RUBY_VERSION
1111
echo "Ruby $RUBY_VERSION installed"

.dockerignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515

1616
/public/packs
1717
/public/packs-test
18-
/yarn-error.log
19-
yarn-debug.log*
20-
.yarn-integrity
18+
/node_modules
19+
/npm-debug.log
20+
/npm-error.log
File renamed without changes.

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ updates:
1717
directory: "/"
1818
schedule:
1919
interval: "weekly"
20+
ignore:
21+
# Keep this locked to 1.77.6 until
22+
# bootstrap 5.3.4 is out to silence
23+
# sass deprecation warnings
24+
# https://getbootstrap.com/docs/versions/
25+
- dependency-name: "sass"
26+
versions: ["1.77.*", "1.78.*"]
2027

2128
- package-ecosystem: "bundler"
2229
directory: "/"

.github/labeler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ erb:
2020

2121
javascript:
2222
- changed-files:
23-
- any-glob-to-any-file: ["**/*.js", "package*.json", "yarn.lock"]
23+
- any-glob-to-any-file: ["**/*.js", "package*.json", "package-lock.json"]
2424

2525
Tests! 🎉💖👏:
2626
- changed-files:
2727
- any-glob-to-any-file: ["app/javascript/__tests__/**.test.js", "spec/**/*_spec.rb"]
2828

2929
dependencies:
3030
- changed-files:
31-
- any-glob-to-any-file: ["Gemfile*", "package*.json", "yarn.lock"]
31+
- any-glob-to-any-file: ["Gemfile*", "package*.json", "package-lock.json"]

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/setup-node@v4
2828
with:
2929
node-version-file: '.nvmrc'
30-
cache: "yarn"
30+
cache: "npm"
3131

3232
rspec_parallel:
3333
needs: [preparation]
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: yarn lint
1+
name: npm lint
22

33
on:
44
push:
@@ -8,7 +8,7 @@ on:
88
- '**/*.js'
99
- '**/*.json'
1010
- '**/*.jsx'
11-
- 'yarn.lock'
11+
- 'package.lock.json'
1212
- '.github/workflows/*.yml'
1313
pull_request:
1414
branches:
@@ -17,12 +17,11 @@ on:
1717
- '**/*.js'
1818
- '**/*.json'
1919
- '**/*.jsx'
20-
- 'yarn.lock'
20+
- 'package.lock.json'
2121
- '.github/workflows/*.yml'
2222

2323
jobs:
24-
yarn_lint:
25-
24+
npm_lint:
2625
runs-on: ubuntu-latest
2726

2827
steps:
@@ -32,6 +31,6 @@ jobs:
3231
with:
3332
node-version-file: '.nvmrc'
3433

35-
- run: yarn
36-
- run: yarn lint
37-
- run: yarn test
34+
- run: npm ci
35+
- run: npm run lint
36+
- run: npm run test

.github/workflows/rspec.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
uses: actions/setup-node@v4
4848
with:
4949
node-version-file: '.nvmrc'
50-
cache: "yarn"
51-
- run: yarn
50+
cache: "npm"
51+
- run: npm ci
5252

5353
- name: Install PostgreSQL client
5454
run: |

0 commit comments

Comments
 (0)