Fix typos in the new 'Building your own components' page #770
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 | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build & Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
check-latest: true | |
node-version-file: .nvmrc | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
ruby-version: '3.1' | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: bundle exec middleman build | |
- name: Test | |
run: bundle exec rake | |
- name: Check links | |
run: npm run check-links |