[FAI-7161] Add getWebhookEvent to faros client for use by Hermes lambda worker #493
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
env: | |
FORCE_COLOR: true | |
HUSKY_SKIP_INSTALL: 1 | |
HUSKY_SKIP_HOOKS: 1 | |
HUSKY: 0 | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Build | |
run: npm ci --unsafe-perm | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm test -- --coverage | |