Skip to content

Bump ruby from 3.2.2-alpine to 3.3.0-alpine #222

Bump ruby from 3.2.2-alpine to 3.3.0-alpine

Bump ruby from 3.2.2-alpine to 3.3.0-alpine #222

Workflow file for this run

name: frontend lint and test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
- name: Run lint
run: make lint
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
- name: Run tests
run: make test