feat(auth): implement user authentication system

This commit is contained in:
J.A.R.V.I.S. 2026-03-19 23:07:24 +00:00
parent 97116fed1c
commit 4847ab793a
7199 changed files with 38207 additions and 747767 deletions

42
node_modules/bcrypt/.github/workflows/ci.yaml generated vendored Normal file
View file

@ -0,0 +1,42 @@
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- name: Test
run: npm test
build-alpine:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
container:
image: node:${{ matrix.node-version }}-alpine
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
apk add make g++ python3
- run: npm ci
- name: Test
run: |
npm test --unsafe-perm