Bump firebase-tools from 13.23.1 to 14.4.0 #913
This file contains hidden or 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 Pull Request | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-links: | |
name: Check Links | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check For Internal Links without Shortcodes | |
run: scripts/check-internal-links.sh | |
check-spelling: | |
name: Check Spelling in Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check Spelling in Content Dir | |
run: scripts/check-spelling.sh | |
build-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: false | |
- uses: actions/[email protected] | |
with: | |
node-version: 22 | |
check-latest: true | |
cache: 'npm' | |
- name: Get Hugo Version | |
id: hugo-version | |
run: | | |
version=$(jq -r .hugo "scripts/.util/tools.json") | |
echo "version=${version#v}" >> "$GITHUB_OUTPUT" | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v3 | |
with: | |
hugo-version: ${{ steps.hugo-version.outputs.version }} | |
extended: true | |
- name: Install node Modules | |
run: npm ci | |
- name: Build | |
run: hugo |