Add key and certfile to request options for helix-front calls to helix-rest #77
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: Helix Front CI | |
on: | |
pull_request: | |
branches: [ master ] | |
paths: | |
- 'helix-front/**' | |
jobs: | |
CI: | |
name: helix-front CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checks-out the repository | |
uses: actions/checkout@v3 | |
- name: Setup Node environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
cache: 'yarn' | |
cache-dependency-path: 'helix-front/yarn.lock' | |
- name: Install dependencies | |
run: yarn | |
working-directory: helix-front | |
- name: Format check | |
run: yarn format:check | |
working-directory: helix-front | |
- name: Build | |
run: yarn prepack | |
working-directory: helix-front |