Add profile link for Koi navigation header #484
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: Test | |
on: | |
pull_request: | |
push: | |
branches: [ main, release/* ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
- run: yarn install | |
- name: Run setup | |
run: | | |
bin/setup | |
- name: Run default rake task | |
run: | | |
bundle exec rake |