Skip to content

Merge branch 'master' into update-mailing-addrs #128

Merge branch 'master' into update-mailing-addrs

Merge branch 'master' into update-mailing-addrs #128

Workflow file for this run

# 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: {}