Skip to content

chore(deps): bump axios from 1.6.7 to 1.8.4 in /ruby/test/support #38

chore(deps): bump axios from 1.6.7 to 1.8.4 in /ruby/test/support

chore(deps): bump axios from 1.6.7 to 1.8.4 in /ruby/test/support #38

Workflow file for this run

name: Ruby Layer CI
on:
push:
branches: [master]
paths:
- 'ruby/**'
pull_request:
paths:
- 'ruby/**'
workflow_dispatch:
branches: [master]
paths:
- 'ruby/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: ruby/[email protected]
with:
ruby-version: '3.3'
- run: bundle
working-directory: ruby
- run: rubocop
working-directory: ruby
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: ruby/[email protected]
with:
ruby-version: '3.3'
# Node.js powers serverless-offline, used for unit tests
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install Node.js Dependencies
run: npm install
working-directory: ruby/test/support
- name: Install Ruby Depedencies
run: bundle
working-directory: ruby
- name: Run Unit Tests
run: bundle exec rake test
working-directory: ruby