interoperability #38
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |