Skip to content

chore(deps): bump tj-actions/changed-files from 44.3.0 to 44.4.0 #2772

chore(deps): bump tj-actions/changed-files from 44.3.0 to 44.4.0

chore(deps): bump tj-actions/changed-files from 44.3.0 to 44.4.0 #2772

Workflow file for this run

name: Check for linting or formatting errors
on:
pull_request: {}
push:
branches: [main]
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.5
- name: Use Node.js v16
uses: actions/setup-node@v4
with:
node-version: 16.x
cache: "yarn"
- run: yarn install --immutable
- run: yarn lint:check
format:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.5
- name: Use Node.js v16
uses: actions/setup-node@v4
with:
node-version: 16.x
cache: "yarn"
- run: yarn install --immutable
- run: yarn format:check