Update Powered by Hugo notice to 2023 so we pass CI jobs #124
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
# Code generated by dhall-to-yaml. DO NOT EDIT. | |
jobs: | |
checkDocs: | |
name: "Rendered 'docs/' is up to date" | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: "actions/checkout@master" | |
with: | |
submodules: recursive | |
- name: Install asdf | |
uses: "asdf-vm/actions/setup@v1.0.1" | |
- name: Install asdf plugins | |
run: scripts/asdf-add-plugins.sh | |
- name: Install asdf tools versions | |
run: scripts/ci/asdf-install.sh | |
- name: Install node packages | |
run: yarn install | |
- name: "Check that 'docs' folder is up to date" | |
run: scripts/ci/check-rendered-site-up-to-date.sh | |
checkPipeline: | |
name: Rendered CI pipeline is up to date | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: "actions/checkout@master" | |
with: | |
submodules: recursive | |
- name: Install asdf | |
uses: "asdf-vm/actions/setup@v1.0.1" | |
- name: Install asdf plugins | |
run: scripts/asdf-add-plugins.sh | |
- name: Install asdf tools versions | |
run: scripts/ci/asdf-install.sh | |
- name: Install node packages | |
run: yarn install | |
- name: Check that the CI pipeline definition is up-to-date with the dhall configuration | |
run: scripts/ci/check-rendered-pipeline-up-to-date.sh | |
dhallFormat: | |
name: dhall-format | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: "actions/checkout@master" | |
with: | |
submodules: recursive | |
- name: Install asdf | |
uses: "asdf-vm/actions/setup@v1.0.1" | |
- name: Install asdf plugins | |
run: scripts/asdf-add-plugins.sh | |
- name: Install asdf tools versions | |
run: scripts/ci/asdf-install.sh | |
- name: Install node packages | |
run: yarn install | |
- env: | |
CHECK: 'true' | |
name: Check that dhall files are formatted | |
run: scripts/dhall-format.sh | |
dhallLint: | |
name: dhall-lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: "actions/checkout@master" | |
with: | |
submodules: recursive | |
- name: Install asdf | |
uses: "asdf-vm/actions/setup@v1.0.1" | |
- name: Install asdf plugins | |
run: scripts/asdf-add-plugins.sh | |
- name: Install asdf tools versions | |
run: scripts/ci/asdf-install.sh | |
- name: Install node packages | |
run: yarn install | |
- env: | |
CHECK: 'true' | |
name: Check that dhall files are linted properly | |
run: scripts/dhall-lint.sh | |
prettier: | |
name: Prettier formatting | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: "actions/checkout@master" | |
with: | |
submodules: recursive | |
- name: Install asdf | |
uses: "asdf-vm/actions/setup@v1.0.1" | |
- name: Install asdf plugins | |
run: scripts/asdf-add-plugins.sh | |
- name: Install asdf tools versions | |
run: scripts/ci/asdf-install.sh | |
- name: Install node packages | |
run: yarn install | |
- name: Check Prettier formatting | |
run: scripts/ci/check-prettier.sh | |
shellcheck: | |
name: shellcheck | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: "actions/checkout@master" | |
with: | |
submodules: recursive | |
- name: Install asdf | |
uses: "asdf-vm/actions/setup@v1.0.1" | |
- name: Install asdf plugins | |
run: scripts/asdf-add-plugins.sh | |
- name: Install asdf tools versions | |
run: scripts/ci/asdf-install.sh | |
- name: Install node packages | |
run: yarn install | |
- name: Lint shell scripts | |
run: scripts/ci/shellcheck.sh | |
shfmt: | |
name: shfmt | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: "actions/checkout@master" | |
with: | |
submodules: recursive | |
- name: Install asdf | |
uses: "asdf-vm/actions/setup@v1.0.1" | |
- name: Install asdf plugins | |
run: scripts/asdf-add-plugins.sh | |
- name: Install asdf tools versions | |
run: scripts/ci/asdf-install.sh | |
- name: Install node packages | |
run: yarn install | |
- name: Check that scripts are formatted consistently | |
run: scripts/ci/shfmt-check.sh | |
name: CI | |
on: | |
pull_request: {} | |
push: {} |