add playwright-based e2e tests with visual regression testing, add a … #316
This file contains hidden or 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
| # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
| name: build and test | |
| on: [push] | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [lts/*] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - run: npm clean-install | |
| - run: npx playwright install --with-deps chromium | |
| # Uncomment this if for some reason you suspect CI (Linux) build differes from local, then you can inspect output. | |
| # - name: Upload dist artifact | |
| # uses: actions/upload-artifact@v4 | |
| # with: | |
| # name: dist | |
| # path: dist/ | |
| - run: npm test | |
| - name: Upload Playwright rest results | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-test-results | |
| path: test-results/ | |
| - name: Upload Playwright e2e snapshots | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-e2e-snapshots | |
| path: e2e/**/*-snapshots/ |