Skip to content

Replace weak client-side ID generation with crypto-based collision-safe primitives #1492

Replace weak client-side ID generation with crypto-based collision-safe primitives

Replace weak client-side ID generation with crypto-based collision-safe primitives #1492

Workflow file for this run

name: CI
on:
push:
branches:
- 'rc/**'
- stable
pull_request:
branches:
- 'rc/**'
- stable
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
- name: Clean untracked files
run: git clean -fdx
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Set up pnpm cache
uses: actions/cache@v4
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Install dependencies
run: pnpm install
- name: Check
run: pnpm check