Skip to content

chore(deps): update all non-major dependencies #582

chore(deps): update all non-major dependencies

chore(deps): update all non-major dependencies #582

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- "**/*.md"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
checks:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install dependencies
run: yarn --immutable
- name: Run lint
run: yarn lint
- name: Run build
run: yarn build