test: clear all #9
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
# This workflow will do a clean installation of node dependencies, cache/ | |
# restore them, build the source code and run tests across different | |
# versions of node. | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: repo-tests | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
env: | |
CI: true | |
# DEBUG: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get node version | |
id: node-version | |
shell: bash | |
run: echo "NODE_VERSION=$(cat ./.nvmrc)" >> $GITHUB_OUTPUT | |
- name: Get pnpm version | |
id: pnpm-version | |
shell: bash | |
run: echo "PNPM_VERSION=$(cat ./.pnpmrc)" >> $GITHUB_OUTPUT | |
- uses: actions/setup-node@v3 | |
id: node-install | |
with: | |
node-version: ${{ steps.node-version.outputs.NODE_VERSION }} | |
- uses: pnpm/action-setup@v2 | |
id: pnpm-install | |
with: | |
version: ${{ steps.pnpm-version.outputs.PNPM_VERSION }} | |
run_install: false | |
- name: Get pnpm store directory path | |
id: pnpm-store-path | |
shell: bash | |
run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- name: Setup pnpm cache | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.pnpm-store-path.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: ${{ runner.os }}-pnpm-store- | |
- name: Setup Wireit cache | |
id: cache-wireit | |
uses: google/wireit@setup-github-actions-caching/v1 | |
- name: Get Playwright version | |
id: playwright-version | |
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./src/experiments/todo/implementations/html-and-expressjs/package.json').devDependencies['@playwright/test'])")" >> $GITHUB_OUTPUT | |
- name: Cache playwright binaries | |
uses: actions/cache@v3 | |
id: playwright-cache | |
with: | |
path: ~/.cache/ms-playwright | |
key: ${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.PLAYWRIGHT_VERSION }} | |
restore-keys: ${{ runner.os }}-playwright- | |
- name: Install NodeJS dependencies | |
id: install-dependencies | |
run: pnpm install --recursive --frozen-lockfile | |
- name: Install Playwright dependencies | |
id: install-playwright-dependencies | |
# if: steps.playwright-cache.outputs.cache-hit != 'true' | |
run: pnpm dlx playwright install --with-deps | |
- name: Run tests | |
run: pnpm test | |
- name: upload-task-output | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: task-output | |
path: | | |
**/.task-output/ | |
**/playwright-report/ | |
if-no-files-found: error |