Skip to content

Disable markdown auto show preview #81

Disable markdown auto show preview

Disable markdown auto show preview #81

Workflow file for this run

name: Checks (Pull Request)
on:
pull_request:
branches:
- main
paths-ignore:
- "**/**.md"
jobs:
lint:
name: Lint
timeout-minutes: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- run: ./sx lint
shell: bash
tests:
name: Tests
timeout-minutes: 1
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- run: ./sx test
shell: bash
build:
name: Build
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: docker/setup-buildx-action@v3
- run: ./modules/images/build.sh
shell: bash