Skip to content

Initiated by moratori for commit 83ffa45c228be5dcfa20dc37530963af14987796 #14

Initiated by moratori for commit 83ffa45c228be5dcfa20dc37530963af14987796

Initiated by moratori for commit 83ffa45c228be5dcfa20dc37530963af14987796 #14

Workflow file for this run

name: build-and-test
run-name: Initiated by ${{ github.actor }} for commit ${{ github.sha }}
on:
pull_request:
types:
- synchronize
- reopened
- opened
jobs:
for-common:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18.16.0]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: install yarn
run: npm install -g yarn
- name: yarn install
run: yarn install
- name: yarn test
run: yarn test
- name: prettier
run: yarn lint:prettier
- name: eslint
run: yarn lint
for-demos-proxy-vci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18.16.0]
defaults:
run:
working-directory: demos/proxy-vci
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: install yarn
run: npm install -g yarn
- name: yarn install
run: yarn install
- name: yarn test
run: yarn test
- name: prettier
run: yarn lint:prettier
- name: eslint
run: yarn lint
for-demos-employee-vci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18.16.0]
defaults:
run:
working-directory: demos/employee-vci
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: install yarn
run: npm install -g yarn
- name: yarn install
run: yarn install
- name: yarn test
run: yarn test
- name: prettier
run: yarn lint:prettier
- name: eslint
run: yarn lint
for-demos-participation-cert-vci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18.16.0]
defaults:
run:
working-directory: demos/participation-cert-vci
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: install yarn
run: npm install -g yarn
- name: yarn install
run: yarn install
- name: yarn test
run: yarn test
- name: prettier
run: yarn lint:prettier
- name: eslint
run: yarn lint