Allow self signed certs by default for localhost-like #901
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 CHT Conf and test against node versions | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build for Node version ${{ matrix.node-version }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [8.x, 10.x, 12.x, 14.x, 16.x, 18.x] | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install pyxform | |
run: pip install git+https://github.com/medic/[email protected]#egg=pyxform-medic | |
- name: npm ci and test | |
run: npm ci && npm test | |
- name: Archive Results | |
uses: actions/upload-artifact@v2 | |
with: | |
name: Coverage Report ${{ matrix.node-version }} | |
path: | | |
coverage | |
.nyc_output | |
if: ${{ failure() }} |