From 7bf0e28bc7ed579508773ab4a6f7093eb85ff92e Mon Sep 17 00:00:00 2001 From: Vernon Thommeret Date: Mon, 10 Jan 2022 13:30:55 -0800 Subject: [PATCH] docs: Add installing project dependencies / uploading test results (#11285) --- docs/src/ci.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/src/ci.md b/docs/src/ci.md index 0c16679e50..b925f11b98 100644 --- a/docs/src/ci.md +++ b/docs/src/ci.md @@ -49,10 +49,18 @@ steps: - uses: actions/setup-node@v2 with: node-version: '14' - - name: Install operating system dependencies - run: npx playwright install-deps + - name: Install dependencies + run: npm ci + - name: Install Playwright + run: npx playwright install --with-deps - name: Run your tests run: npm test + - name: Upload test results + if: always() + uses: actions/upload-artifact@v2 + with: + name: playwright-results + path: test-results ``` ```yml python