chore(deps): update rust crate fake to v3 (#1809) #3269
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: Website CI # Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
website: | |
name: Website Check | |
runs-on: ubuntu-latest | |
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 | |
working-directory: ./website | |
- name: Markdown lint | |
run: npm run mdlint | |
working-directory: ./website | |
- name: Build website | |
run: npm run build | |
working-directory: ./website |