Skip to content

feat(security): migrate API keys to SecretStorage #483

feat(security): migrate API keys to SecretStorage

feat(security): migrate API keys to SecretStorage #483

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- "master"
permissions:
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Type check
run: npm run typecheck
- name: Build
run: npm run build
- name: Run tests
run: npm run test