Skip to content

Bump chromaui/action from 11.10.2 to 11.10.4 #2426

Bump chromaui/action from 11.10.2 to 11.10.4

Bump chromaui/action from 11.10.2 to 11.10.4 #2426

Workflow file for this run

name: Lint and format
on:
pull_request:
push:
branches:
- main
jobs:
css-lint:
name: CSS Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: yarn install --frozen-lockfile
- name: Run css:lint
run: yarn css:lint
js-lint:
name: JS Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: yarn install --frozen-lockfile
- name: Run js:lint
run: yarn js:lint
markdown-linkt:
name: Markdown Linter
if: '!github.event.deleted'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- run: yarn install --frozen-lockfile
- name: Run markdown:lint
run: yarn markdown:lint