Cast fav ID to int before doing inequality comparison #262
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: System tests | |
on: | |
push: | |
branches-ignore: | |
- "dependabot/**" | |
pull_request: | |
branches: | |
- "master" | |
workflow_dispatch: | |
jobs: | |
system-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Build docker image" | |
run: make docker_build | |
- name: "Run docker compose" | |
run: "make deploy_bg PORT=9292" | |
env: | |
FA_COOKIE: ${{ secrets.TEST_COOKIE }} | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1.2 | |
- name: Install dependencies | |
run: bundle install | |
- name: "Run system tests" | |
run: bundle exec "rspec spec tests/system_spec.rb" | |
env: | |
server_url: "http://localhost:9292" | |
test_cookie: ${{ secrets.TEST_COOKIE}} | |
test_cookie_user_2: ${{ secrets.COOKIE_FAFEED_2 }} |