Skip to content

test: add test for qr link verification unencrypted data #242

test: add test for qr link verification unencrypted data

test: add test for qr link verification unencrypted data #242

Workflow file for this run

name: Build and Test
on:
pull_request:
branches:
- next
jobs:
test_and_build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- name: Enable Corepack
run: corepack enable
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: '21'
cache: 'yarn'
- name: Install dependencies
run: |
yarn cache clean && yarn install --immutable
- name: Check linting
run: yarn lint
- name: Build
run: yarn build
- name: Run tests
run: |
yarn test:coverage
- name: Jest Coverage Comment
uses: MishaKav/jest-coverage-comment@main
with:
title: Code Coverage Report
multiple-files: |
All packages, ./coverage/coverage-summary.json
Components, ./packages/components/coverage/coverage-summary.json
Mock app, ./packages/mock-app/coverage/coverage-summary.json
Services, ./packages/services/coverage/coverage-summary.json
UNTP test suite, ./packages/untp-test-suite/coverage/coverage-summary.json
VC test suite, ./packages/vc-test-suite/coverage/coverage-summary.json
build_docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
- name: Install and build documentation
run: |
cd documentation
yarn install --frozen-lockfile
yarn build
env:
DOCS_BASE_URL: ${{ vars.DOCS_BASE_URL }}
DOCS_URL: ${{ vars.DOCS_URL }}