Skip to content

chore(deps): bump tar from 7.5.10 to 7.5.11 #236

chore(deps): bump tar from 7.5.10 to 7.5.11

chore(deps): bump tar from 7.5.10 to 7.5.11 #236

Workflow file for this run

name: Lint & Spell Check
on: [push, pull_request]
permissions:
contents: read
jobs:
spelling:
name: Spell Check with Typos
runs-on: ubuntu-latest
env:
CLICOLOR: 1
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Spell Check Repo
uses: crate-ci/typos@v1
prettier:
name: Prettier Format Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "18"
- name: Enable Corepack
run: corepack enable
- name: Install Dependencies
run: yarn install --immutable
- name: Check Formatting with Prettier
run: yarn format:check