Skip to content

#220: suppress autodebugging on lando 3 for now #81

#220: suppress autodebugging on lando 3 for now

#220: suppress autodebugging on lando 3 for now #81

Workflow file for this run

name: Run Docs Tests
on:
pull_request:
jobs:
unit-tests:
runs-on: ${{ matrix.os }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEBUG: "@lando/*"
strategy:
matrix:
os:
- ubuntu-22.04
node-version:
- '16'
steps:
# Install deps and cache
- name: Checkout code
uses: actions/checkout@v3
- name: Install node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install Yarn dependencies
run: yarn install --prefer-offline --frozen-lockfile
# Run tests
- name: Run linter
run: |
yarn docs:lint
- name: Test build
run: |
yarn docs:build