Skip to content

Fix for build status badge still referring to old Travis workflow one #2

Fix for build status badge still referring to old Travis workflow one

Fix for build status badge still referring to old Travis workflow one #2

Workflow file for this run

name: Build
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.3
bundler-cache: true
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: bundle exec rake spec