Initiated by moratori for commit d3c2c06f5833c014eb419a976a4c8e055f45c699 #5
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: 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 |