Skip to content

Commit

Permalink
Replaced bun
Browse files Browse the repository at this point in the history
  • Loading branch information
yatish27 committed Apr 24, 2024
1 parent 5ae35cb commit bda7f88
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,17 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: oven-sh/setup-bun@v1
- name: Install Yarn conditionally
run: |
if ! command -v yarn &> /dev/null; then
corepack enable && npm install yarn
fi
- name: Setup Node.js
uses: actions/setup-node@v2
with:
bun-version: latest
node-version: "18.12.1"
cache-dependency-path: yarn.lock
cache: "yarn"
- run: bundle exec rake db:migrate
- run: bundle exec rake test:all
rubocop:
Expand Down

0 comments on commit bda7f88

Please sign in to comment.