Get rid of the tasks checking the legacy join/split direction mode of… #10662
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: documentation | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'docs/**' | |
- 'resources/**' | |
- 'tools/**' | |
pull_request: | |
paths: | |
- 'docs/**' | |
- 'resources/**' | |
- 'tools/**' | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '14' | |
- name: Set up Virtualenv | |
run: pip install virtualenv | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 50 | |
- name: Run website_build.sh | |
# Use a conditional step instead of a conditional job to work around #20700. | |
if: github.repository == 'web-platform-tests/wpt' | |
run: ./tools/ci/website_build.sh | |
env: | |
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }} |