Update deps, pre-commit hooks, & actions, add Prettier and sync w/other repos #47
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
# Build the project and test that it works correctly | |
name: Test | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- 'staging*' | |
pull_request: | |
branches: | |
- master | |
- main | |
- '*.*' | |
- 'staging*' | |
jobs: | |
deploy: | |
name: Build Site | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout website repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
shell: bash | |
run: ./ci/install.sh | |
- name: Build with Lektor | |
shell: bash | |
run: ./ci/build.sh |