Bump json-schema and jsprim #48
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: "CI" | |
env: | |
BUNDLE_GEM__FURY__IO: ${{ secrets.BUNDLE_GEM__FURY__IO }} | |
BUNDLE_GITHUB__COM: ${{ secrets.BUNDLE_GITHUB__COM }} | |
on: | |
push: | |
branches: [ "main", "master" ] | |
pull_request: | |
branches: [ "main", "master" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
env: | |
RAILS_ENV: test | |
FINCAP_ALGOLIA_APP_ID: test | |
FINCAP_ALGOLIA_API_KEY: test | |
FRONTEND_HTTP_REQUEST_TIMEOUT: 12 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Ruby and gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
- name: Install bower | |
run: npm install -g bower | |
- name: Install bowndler packages | |
run: bin/bowndler update | |
- name: Run tests | |
run: bin/rake |