From 84d8cdceb4da26392296ec58ed3316753dace847 Mon Sep 17 00:00:00 2001 From: LukasGerm Date: Tue, 13 Feb 2024 21:07:27 +0100 Subject: [PATCH] feat: update workflow --- .github/workflows/gh-pages.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 50ad805..9d39207 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -47,18 +47,6 @@ jobs: run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true" - name: Build run: "npm run build" - - name: Checkout WPT - run: "npm run test-setup" - - name: WPT hosts - run: "./test/wpt/wpt make-hosts-file | sudo tee -a /etc/hosts" - - name: WPT tests - run: "npm run test:wpt" - - name: Expected results - run: "npm run test:compare" - - name: Test results summary - run: | - echo "Passed $(grep '/css' ./test/report/summary.txt | grep -c '^PASS' ) of $(grep '/css' ./test/report/summary.txt | grep -c '^') css tests" >> $GITHUB_STEP_SUMMARY - echo "Passed $(grep -v '/css' ./test/report/summary.txt | grep -c '^PASS' ) of $(grep -v '/css' ./test/report/summary.txt | grep -c '^') waapi tests" >> $GITHUB_STEP_SUMMARY - name: Clean build files run: "rm -rf node_modules test/wpt" - name: Upload artifact