Skip to content

fix(merc): MERC-9364 bump paper handlebars - revert CDN Webdav Url #249

fix(merc): MERC-9364 bump paper handlebars - revert CDN Webdav Url

fix(merc): MERC-9364 bump paper handlebars - revert CDN Webdav Url #249

Workflow file for this run

name: Lint and Test PR
on:
pull_request:
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18.x]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
run: npm i
- name: Verify Github PR Title
run: echo "${{ github.event.pull_request.title }}" | npx commitlint
- name: Verify Git Commit Name
run: git log -1 --pretty=format:"%s" | npx commitlint
- name: Lint the code
run: npm run lint
- name: Run test
run: npm run test