Skip to content

Bump the ruby-production-dependencies group with 3 updates #341

Bump the ruby-production-dependencies group with 3 updates

Bump the ruby-production-dependencies group with 3 updates #341

Workflow file for this run

name: "test-on-pr"
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
eslint:
if: |
!contains(github.event.pull_request.title, '[skip ci]')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable && corepack prepare yarn@4.2.2
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: install app dependencies
run: yarn install --frozen-lockfile
- name: ESLint
run: yarn eslint
stylelint:
if: |
!contains(github.event.pull_request.title, '[skip ci]')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable && corepack prepare yarn@4.2.2
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: install app dependencies
run: yarn install --frozen-lockfile
- name: Stylelint
run: yarn stylelint "**/*.{css,js,scss}" -f github