Skip to content

fix: ngrok proxy endpoint URL handling #92

fix: ngrok proxy endpoint URL handling

fix: ngrok proxy endpoint URL handling #92

Workflow file for this run

name: Code Check
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: Install Node.js
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
with:
node-version-file: ./.nvmrc
- name: Get mkcert CLI
run: |
tmpdir="$(mktemp -d)"
wget -q -O mkcert "https://github.com/FiloSottile/mkcert/releases/download/v1.4.3/mkcert-v1.4.3-linux-amd64"
chmod +x ./mkcert
mv ./mkcert "${tmpdir}/mkcert"
echo "${tmpdir}" >> "$GITHUB_PATH"
- run: mkcert localhost
- run: npm ci
- run: npm run code-check
- run: npm run test
- run: npm run build