Skip to content

Updating installation instructions with Win 7/8 warning. #1475

Updating installation instructions with Win 7/8 warning.

Updating installation instructions with Win 7/8 warning. #1475

Workflow file for this run

name: Demo ngrok docs
on:
pull_request:
branches:
- main
jobs:
deploy:
name: Demo ngrok docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
- name: 'Create env file'
run: |
echo DEPLOY_ENV=dev > .env
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check formatting
run: pnpm run fmt:check
- name: Build website
run: pnpm run build