Skip to content

fix: use self-signed server certificate (#7) #35

fix: use self-signed server certificate (#7)

fix: use self-signed server certificate (#7) #35

Workflow file for this run

name: Unit tests
on:
push:
branches:
- saga
pull_request:
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- name: Keep npm cache around to speed up installs
uses: actions/cache@v4
with:
path: ~/.npm
key: build-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm ci --no-audit
- name: Run tests
run: npm test