Remove ctop because it is not working in Ubuntu 22.x and removed from 24.x #157
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: Test Website Deployment | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint docs | |
uses: articulate/actions-markdownlint@v1 | |
with: | |
version: 0.32.2 | |
test-deploy: | |
name: Test deployment | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: website | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: npm | |
cache-dependency-path: website/package-lock.json | |
- name: Install dependencies | |
run: npm ci | |
- name: Build website | |
run: npm run build |