Initiated by moratori for commit f988b3d1ddb0cc1e93fe102cc30b0325cbae30ca #30
Workflow file for this run
This file contains hidden or 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: 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 |