Skip to content

Test to see if global package.json is accessible part 5 #141

Test to see if global package.json is accessible part 5

Test to see if global package.json is accessible part 5 #141

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
name: Ruby
on:
push:
branches:
- "*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install Prism
run: (yarn global add @stoplight/prism-cli@5.6.0 && cd ~/.config/yarn/global && cat package.json && echo {resolutions \:{"@stoplight/json":"3.20.0"}} >> package.json && cat package.json")
- name: Start Prism Server
run: (prism mock -h 127.0.0.1 openapi.json &)
- name: Set up Ruby
uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
with:
ruby-version: "3.1"
- name: Install dependencies
run: bundle install
- name: Build
run: bundle exec rake build
- name: Run tests
run: bundle exec rake spec