Skip to content

chore(deps): bump nanoid from 3.3.7 to 3.3.8 #2453

chore(deps): bump nanoid from 3.3.7 to 3.3.8

chore(deps): bump nanoid from 3.3.7 to 3.3.8 #2453

Workflow file for this run

name: PR checks
on:
push:
branches:
- master
pull_request:
jobs:
Lint-build-test:
name: Lint, build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint:check
- name: Typecheck
run: yarn typecheck
- name: Test
run: yarn test
- name: Build
run: yarn build