forked from rubyforgood/casa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'weekly-digest-notes' of github.com:rubyforgood/casa int…
…o weekly-digest-notes Corrects linting errors
- Loading branch information
Showing
250 changed files
with
4,262 additions
and
3,068 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -22,15 +22,13 @@ jobs: | |
steps: | ||
- name: Checkout repository | ||
uses: actions/[email protected] | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Build | ||
run: docker-compose build | ||
- name: bundle install | ||
run: docker-compose run web bundle install | ||
- name: db:reset | ||
run: docker-compose run web rails db:reset | ||
- name: Create downloads folder | ||
run: | | ||
mkdir -p tmp/downloads | ||
chmod 777 tmp tmp/downloads | ||
- name: docker UP | ||
run: docker-compose up -d | ||
- name: db:reset | ||
run: docker-compose exec -T web rails db:reset | ||
- name: Test | ||
run: docker-compose exec -T web bundle exec rspec spec |
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 |
---|---|---|
|
@@ -26,7 +26,7 @@ jobs: | |
|
||
- uses: actions/[email protected] | ||
with: | ||
node-version: 14.x | ||
node-version: 12.x | ||
|
||
- run: yarn | ||
- run: yarn test |
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 |
---|---|---|
|
@@ -36,6 +36,7 @@ yarn-debug.log* | |
|
||
.rails_routes* | ||
.vscode | ||
.rubocop.yml | ||
|
||
coverage/ | ||
.idea/ | ||
|
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 |
---|---|---|
@@ -1 +1 @@ | ||
ruby-3.0.1 | ||
ruby-3.0.2 |
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 |
---|---|---|
@@ -1 +1 @@ | ||
ruby 3.0.1 | ||
ruby 3.0.2 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ruby:3.0.1-alpine AS builder | ||
FROM ruby:3.0.2-alpine AS builder | ||
|
||
LABEL maintainer="[email protected]" | ||
|
||
|
@@ -24,7 +24,7 @@ COPY . . | |
|
||
### BUILD STEP DONE ### | ||
|
||
FROM ruby:3.0.1-alpine | ||
FROM ruby:3.0.2-alpine | ||
|
||
ARG RAILS_ROOT=/usr/src/app/ | ||
|
||
|
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
Oops, something went wrong.