Skip to content

chore(deps): update devdependencies (major) #557

chore(deps): update devdependencies (major)

chore(deps): update devdependencies (major) #557

Workflow file for this run

name: CI
on:
pull_request:
jobs:
commit-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Commit Lint
uses: wagoid/commitlint-github-action@v5
- name: PR Lint
uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
code-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/[email protected]
with:
node-version: '18'
- uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-18-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Format
run: yarn run format
- name: Lint
run: yarn run lint