Skip to content

Revert "feat: change AES mechanism to crypto-js" #35

Revert "feat: change AES mechanism to crypto-js"

Revert "feat: change AES mechanism to crypto-js" #35

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ main ]
jobs:
build-test-lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [ 20.x, 22.x, 24.x ]
name: build-test-lint (Node ${{ matrix.node-version }})
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run format:check
- run: npm run lint
- run: npm test
- run: npm run build