Skip to content

Update CHANGELOG.md #709

Update CHANGELOG.md

Update CHANGELOG.md #709

Workflow file for this run

name: Pull request verify workflow
on:
# Trigger the workflow on push or pull request,
# but only for the default(staging) branch
push:
branches: [staging]
pull_request:
branches: [staging]
types: [opened, labeled, synchronize, ready_for_review]
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm run bootstrap:ignorescripts && npm run install:peer
- name: Run Build Check
run: npm run build
- name: Run Lint Check
run: npm run lint
- name: Run Test Check
run: npm run test
- name: Annotate Checks
uses: agyemanjp/[email protected]
with:
ghToken: ${{ secrets.GITHUB_TOKEN }}
checks: '[
{
"name": "build",
"fileName": ".build-report.json",
"prChangesOnly": true
},
{
"name": "lint",
"fileName": ".lint-report.json",
"prChangesOnly": true
},
{
"name": "test",
"fileName": ".test-report.json",
"prChangesOnly": false
}
]'