ul blog improvements #12220
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 & Deploy | |
on: [push, pull_request] | |
jobs: | |
test-and-deploy: | |
name: Test & Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up node and npm | |
uses: actions/setup-node@v4 | |
with: | |
version: 18 | |
- name: Install node dependencies | |
run: npm install | |
- name: Set up ruby and bundler | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 | |
- name: Install ruby dependencies | |
run: | | |
gem install bundler -v 2.0.2 | |
bundle install | |
- name: Set up python and pip | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.7 | |
architecture: x64 | |
- name: Install AWS CLI | |
run: pip install --user awscli | |
- name: Build the blog | |
run: npm run build-prod | |
- name: Run tests | |
run: | | |
npm run markdown-lint | |
npm run validate-front-matter | |
npm run validate-images | |
if ! bundle exec ./scripts/htmlproofer.rb; | |
then | |
echo "Failed HTML link validation." | |
exit 1; | |
else | |
echo -e "\xE2\x9C\x94 No broken internal/external links!" | |
exit 0; | |
fi | |
- name: Prep for Deploy | |
run: npm run prep-for-deploy |