chore(deps-dev): bump lint-staged from 11.2.6 to 15.2.6 #1800
Workflow file for this run
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
name: Docker Image CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build and run the Docker images | |
run: docker-compose up -d | |
- name: Activate Postgres for testing | |
run: docker-compose run -e RACK_ENV=test app bundle exec rails db:create | |
- name: Run RSpec | |
run: docker-compose run app bundle exec rspec | |
- name: Notify slack | |
uses: 8398a7/action-slack@v3 | |
if: failure() | |
with: | |
status: ${{ job.status }} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |