Skip to content

chore(deps): bump js-yaml from 4.3.0 to 4.3.1 #354

chore(deps): bump js-yaml from 4.3.0 to 4.3.1

chore(deps): bump js-yaml from 4.3.0 to 4.3.1 #354

Workflow file for this run

name: Lint Codebase
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
lint:
name: Lint Codebase
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 20
cache: yarn
- name: Install Dependencies
run: yarn install --immutable
- name: Check Format
run: yarn format:check
- name: Lint
run: yarn lint