From 925dc4c02129c462bdcda9637695a405ae76812e Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 14 Jun 2024 17:55:36 +0200 Subject: [PATCH] Remove PR chek for now + add ARIA ED --- .github/workflows/aria.yml | 16 ++++++++++++++++ .github/workflows/gh-pages.yml | 34 ---------------------------------- 2 files changed, 16 insertions(+), 34 deletions(-) create mode 100644 .github/workflows/aria.yml delete mode 100644 .github/workflows/gh-pages.yml diff --git a/.github/workflows/aria.yml b/.github/workflows/aria.yml new file mode 100644 index 000000000..a13b2f3a1 --- /dev/null +++ b/.github/workflows/aria.yml @@ -0,0 +1,16 @@ +name: aria ED +on: + pull_request: {} + push: + branches: [main] +jobs: + main: + name: Build, Validate and Deploy + runs-on: ubuntu-20.04 + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + - uses: w3c/spec-prod@v2 + with: + GH_PAGES_BRANCH: gh-pages \ No newline at end of file diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml deleted file mode 100644 index 350f39937..000000000 --- a/.github/workflows/gh-pages.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Lightweight check on pull requests - -# See https://github.com/w3c/spec-prod/blob/main/docs/examples.md#deploy-to-github-pages - -on: - pull_request: {} -jobs: - main: - name: Build, Validate and Deploy - runs-on: ubuntu-20.04 - permissions: - contents: write - strategy: - max-parallel: 1 - matrix: - include: - - source: - - index.html - - core-aam/index.html - - accname/index.html - - dpub-aam/index.html - - dpub-aria/index.html - - graphics-aam/index.html - - graphics-aria/index.html - - svg-aam/index.html - steps: - - uses: actions/checkout@v4 - - uses: w3c/spec-prod@v2 - with: - SOURCE: ${{ matrix.source }} - TOOLCHAIN: respec - BUILD_FAIL_ON: nothing - VALIDATE_WEBIDL: false - VALIDATE_MARKUP: false