fix(docs): update docker-compose commands to use 'docker compose' syntax #811
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint and Check Links | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Lint and Check Links | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint with ESLint | |
run: npm run lint | |
- name: Build website | |
run: npm run build | |
- name: Prettier Code | |
run: npm run format:diff | |
- name: Check types | |
run: npm run typecheck |