Skip to content

feature - config of defaults #45

feature - config of defaults

feature - config of defaults #45

Workflow file for this run

name: Test and build
on:
workflow_dispatch:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.10.0
- name: Install dev dependencies
run: npm ci
- name: Install dependencies
run: npm -C packages/core ci
- name: Install dependencies
run: npm -C packages/ciphers ci
- name: Testing core
run: npm -C packages/core test
- name: Testing ciphers
run: npm -C packages/ciphers test
- name: Lint
run: npm run lint
- name: Build
run: npm -C packages/core run build
- name: Build
run: npm -C packages/ciphers run build